TexasInstruments / edgeai-benchmark

This repository has been moved. The new location is in https://github.com/TexasInstruments/edgeai-tensorlab
https://github.com/TexasInstruments/edgeai
Other
3 stars 0 forks source link

Assertion error #21

Open Mugutech62 opened 1 year ago

Mugutech62 commented 1 year ago

AssertionError Traceback (most recent call last) Untitled-1.ipynb Cell 13 line 1 ----> 1 tools.run_accuracy(settings, work_dir, pipeline_configs)

File ~/edgeai-benchmark/edgeai_benchmark/tools/run_accuracy.py:88, in run_accuracy(settings, work_dir, pipeline_configs, modify_pipelines_func) 86 # now actually run the configs 87 if settings.run_import or settings.run_inference: ---> 88 pipeline_runner.run()

File ~/edgeai-benchmark/edgeai_benchmark/pipelines/pipeline_runner.py:81, in PipelineRunner.run(self) 78 def run(self): 79 if (isinstance(self.settings.parallel_devices, (list,tuple)) and len(self.settings.parallel_devices) > 0) or \ 80 (isinstance(self.settings.parallel_devices, int) and self.settings.parallel_devices > 0): ---> 81 return self._run_pipelines_parallel() 82 else: 83 return self._run_pipelines_sequential()

File ~/edgeai-benchmark/edgeai_benchmark/pipelines/pipeline_runner.py:114, in PipelineRunner._run_pipelines_parallel(self) 112 parallel_exec.enqueue(run_pipeline_bound_func) 113 # --> 114 results_list = parallel_exec.run() 115 return results_list

File ~/edgeai-benchmark/edgeai_benchmark/utils/parallel_run.py:87, in ParallelRun.run(self) ... ---> 82 assert group is None, 'group argument must be None for now' 83 count = next(_process_counter) 84 self._identity = _current_process._identity + (count,)

AssertionError: group argument must be None for now

Mugutech62 commented 1 year ago

I was trying to run sample tutorialdetection.ipynb script using edge ai benchmark, but i am facing the error