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
* Move to newer OMZ
After this is merged It will be required to release model_api 0.2.0 only after openvino 2024.0 because model_api is going to import OMZ using a new namespace
* Replace ssd300
* Remove mobilenet-v3-large-1.0-224-tf
* Test mobilenet-v3-large-1.0-224-tf
* Replace ssd300
* black
* Update ref
* Update ref
* Align README.md
auto model = DetectionModel::create_model("~/.cache/omz/public/ssd300/FP16/ssd300.xml");
66
+
auto model = DetectionModel::create_model("~/.cache/omz/public/ssdlite_mobilenet_v2/FP16/ssdlite_mobilenet_v2.xml");
67
67
68
68
// Run synchronous inference locally
69
69
auto result = model->infer(image); // image is cv::Mat
@@ -81,13 +81,13 @@ Model's static method `create_model()` has two overloads. One constructs the mod
81
81
There are usecases when it is not possible to modify an internal `ov::Model` and it is hidden behind `InferenceAdapter`. For example the model can be served using [OVMS](https://github.com/openvinotoolkit/model_server). `create_model()` can construct a model from a given `InferenceAdapter`. That approach assumes that the model in `InferenceAdapter` was already configured by `create_model()` called with a string (a path or a model name). It is possible to prepare such model using C++ or Python:
82
82
C++
83
83
```Cpp
84
-
auto model = DetectionModel::create_model("~/.cache/omz/public/ssd300/FP16/ssd300.xml");
84
+
auto model = DetectionModel::create_model("~/.cache/omz/public/ssdlite_mobilenet_v2/FP16/ssdlite_mobilenet_v2.xml");
0 commit comments