Skip to content

Commit f197fa6

Browse files
committed
remove unused precision and tags fields from model definitions in tests and example configuration
1 parent 629e7db commit f197fa6

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

experiments/android_example.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ models:
4242
models: # Optional: explicit models in addition to directory scanning
4343
- name: "custom_model"
4444
path: "/path/to/custom/model.xml" # UPDATE THIS PATH
45-
precision: "FP16"
46-
tags:
47-
framework: "custom"
48-
task: "detection"
4945

5046
run:
5147
repeats: 3

tests/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ def test_experiment_with_complex_models_config_dict(self):
602602
"extensions": [".xml", ".onnx", ".pb"],
603603
"models": [
604604
{"name": "explicit1", "path": "explicit1.xml"},
605-
{"name": "explicit2", "path": "explicit2.xml", "precision": "FP16"},
605+
{"name": "explicit2", "path": "explicit2.xml"},
606606
],
607607
},
608608
"report": {"sinks": [{"type": "json", "path": "results.json"}]},

0 commit comments

Comments
 (0)