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.
2 parents 5a0b572 + 740af5e commit 214d362Copy full SHA for 214d362
tools/accuracy_checker/openvino/tools/accuracy_checker/main.py
@@ -72,9 +72,12 @@ def main():
72
print_processing_info(*processing_info)
73
evaluator = evaluator_class.from_configs(config_entry)
74
details.update(evaluator.send_processing_info(tm))
75
+ metric_types = details.get('metrics', [])
76
if args.profile:
77
setup_profiling(args.profiler_logs_dir, evaluator)
78
send_telemetry_event(tm, 'model_run', json.dumps(details))
79
+ for metric in metric_types:
80
+ send_telemetry_event(tm, 'metric_type', metric)
81
evaluator.process_dataset(
82
stored_predictions=args.stored_predictions, progress_reporter=progress_reporter, **evaluator_kwargs
83
)
0 commit comments