edgeai-benchmark icon indicating copy to clipboard operation
edgeai-benchmark copied to clipboard

Assertion error

Open Greenie0701 opened this issue 2 years ago • 1 comments


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

Greenie0701 avatar Oct 04 '23 08:10 Greenie0701

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

Greenie0701 avatar Oct 04 '23 08:10 Greenie0701