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 33b7e8d commit 1629a7bCopy full SHA for 1629a7b
examples/models/yolo12/main.cpp
@@ -51,7 +51,8 @@ int main(int argc, char** argv) {
51
executorch::runtime::runtime_init();
52
gflags::ParseCommandLineFlags(&argc, &argv, true);
53
54
- Module yolo_module(FLAGS_model_path);
+ // Use Mmap model to enable loading of big YOLO models in OpenVINO
55
+ Module yolo_module(FLAGS_model_path, Module::LoadMode::Mmap);
56
57
auto error = yolo_module.load();
58
0 commit comments