We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e449b1 commit 728ba86Copy full SHA for 728ba86
src/cpp/src/adapters/openvino_adapter.cpp
@@ -62,6 +62,9 @@ void OpenVINOInferenceAdapter::applyModelTransform(std::function<void(std::share
62
throw std::runtime_error("Model is not loaded");
63
}
64
t(model);
65
+ if (model->has_rt_info({"model_info"})) {
66
+ modelConfig = model->get_rt_info<ov::AnyMap>("model_info");
67
+ }
68
69
70
void OpenVINOInferenceAdapter::infer(const InferenceInput& input, InferenceOutput& output) {
0 commit comments