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
To run the API, go to the project's root directory and run the following:
58
+
To run the API, go the to the API's directory and run the following:
59
59
60
60
#### Using Linux based docker:
61
61
@@ -79,7 +79,7 @@ To see all available endpoints, open your favorite browser and navigate to:
79
79
```
80
80
http://<machine_IP>:<docker_host_port>/docs
81
81
```
82
-
The 'predict_batch' endpoint is not shown on swagger.
82
+
The 'predict_batch' endpoint is not shown on swagger. The list of files input is not yet supported.
83
83
84
84
**P.S: If you are using custom endpoints like /load, /detect, and /get_labels, you should always use the /load endpoint first and then use /detect or /get_labels**
85
85
@@ -133,24 +133,26 @@ Returns the specified model's configuration
133
133
134
134
Performs inference on specified model and a list of images, and returns bounding boxes
135
135
136
+
**P.S: Custom endpoints like /load, /detect, and /get_labels should be used in a chronological order. First you have to call /load, and then call /detect or /get_labels**
137
+
136
138
## Model structure
137
139
138
140
The folder "models" contains subfolders of all the models to be loaded.
139
141
Inside each subfolder there should be a:
140
142
141
-
- Cfg file (ends with .cfg): contains the configuration of the model
143
+
- Cfg file (yolo-obj.cfg): contains the configuration of the model
142
144
143
-
- Weights file (ends with .weights)
145
+
- Weights file (yolo-obj.weights)
144
146
145
-
- Names file (ends with .names) : contains the names of the classes
147
+
- Names file (obj.names) : contains the names of the classes
146
148
147
149
- Config.json (This is a json file containing information about the model)
0 commit comments