You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+33-32
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ architectures. That is where QuickAI came in. It allows for easy experimentation
18
18
19
19
### Dependencies:
20
20
21
-
Tensorflow, PyTorch, Sklearn, Matplotlib, Numpy, and Hugging Face Transformers. You should install TensorFlow and PyTorch following the instructions from their respective websites.
21
+
Tensorflow, PyTorch, Sklearn, Matplotlib, Numpy, and Hugging Face Transformers. You should install TensorFlow and PyTorch following the instructions from their respective websites.
22
22
23
23
### Why you should use QuickAI
24
24
@@ -30,50 +30,51 @@ all of these steps happens automatically with just 1-2 lines of code.
30
30
### The following models are currently supported:
31
31
32
32
1.#### Image Classification
33
-
* EfficientNet B0-B7
34
-
* VGG16
35
-
* VGG19
36
-
* DenseNet121
37
-
* DenseNet169
38
-
* DenseNet201
39
-
* Inception ResNet V2
40
-
* Inception V3
41
-
* MobileNet
42
-
* MobileNet V2
43
-
* MobileNet V3 Small & Large
44
-
* ResNet 101
45
-
* ResNet 101 V2
46
-
* ResNet 152
47
-
* ResNet 152 V2
48
-
* ResNet 50
49
-
* ResNet 50 V2
50
-
* Xception
33
+
- EfficientNet B0-B7
34
+
- VGG16
35
+
- VGG19
36
+
- DenseNet121
37
+
- DenseNet169
38
+
- DenseNet201
39
+
- Inception ResNet V2
40
+
- Inception V3
41
+
- MobileNet
42
+
- MobileNet V2
43
+
- MobileNet V3 Small & Large
44
+
- ResNet 101
45
+
- ResNet 101 V2
46
+
- ResNet 152
47
+
- ResNet 152 V2
48
+
- ResNet 50
49
+
- ResNet 50 V2
50
+
- Xception
51
51
2.#### Natural Language Processing
52
-
* GPT-NEO 125M(Generation, Inference)
53
-
* GPT-NEO 350M(Generation, Inference)
54
-
* GPT-NEO 1.3B(Generation, Inference)
55
-
* GPT-NEO 2.7B(Generation, Inference)
56
-
* Distill BERT Cased(Q&A, Inference and Fine Tuning)
- Distill BERT Uncased(Sentiment Analysis & Text/Token Classification, Inference and Fine Tuning)
60
61
61
62
3.#### Object Detection
62
-
* YOLOV4
63
-
* YOLOV4 Tiny
63
+
- YOLOV4
64
+
- YOLOV4 Tiny
64
65
65
66
### Installation
66
67
67
68
`pip install quickAI`
68
69
69
70
### How to use
70
71
71
-
Please see the examples folder for details. For the YOLOV4, you can download weights from [here](https://github.com/geekjr/quickai/releases/download/1.3.0/checkpoints.zip)
72
+
Please see the examples folder for details. For the YOLOV4, you can download weights from [here](https://github.com/geekjr/quickai/releases/download/1.3.0/checkpoints.zip). Full documentation is in the wiki section of the repo.
72
73
73
74
### Issues/Questions
74
75
75
-
If you encounter any bugs, please open a new issue so they can be corrected. If you have general questions, please use the discussion section.
76
-
76
+
If you encounter any bugs, please open a new issue so they can be corrected. If you have general questions, please use the discussion section.
77
77
78
78
### Credits
79
+
79
80
Most of the code for the YOLO implementation was taken from "The AI Guy's" [tensorflow-yolov4-tflite](https://github.com/theAIGuysCode/tensorflow-yolov4-tflite) repo. Without this, the YOLO implementation would not be possible. Thank you!
0 commit comments