thx for the advice, i didn’t know har file can be used for inference before
after some digging, i found the emulator part on the DFC documentation page 76, but im not sure how to use it, i didn’t find what the input data supposed to be, so i just put in an image as array
then i got this error:
Inference: 0entries [00:00, ?entries/s]Traceback (most recent call last):
File “/local/workspace/model_conversion_v2/har_infer.py”, line 14, in
output = runner.infer(ctx, np.asarray(image))
File “/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_sdk_common/states/states.py”, line 16, in wrapped_func
return func(self, *args, **kwargs)
File “/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_sdk_client/runner/client_runner.py”, line 373, in infer
return self.infer_emulator(infer_info)
File “/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_sdk_client/runner/client_runner.py”, line 401, in infer_emulator
return self.sdk_backend.acceleras_inference(infer_info)
File “/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_sdk_client/sdk_backend/sdk_backend.py”, line 1265, in acceleras_inference
return self.inference_flow.run(infer_info.data, batch_size, infer_info.data_count)
File “/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/flows/inference_flow.py”, line 65, in run
infer_output = self.predict(dataset, callbacks=[callback], verbose=0)
File “/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/keras/utils/traceback_utils.py”, line 70, in error_handler
raise e.with_traceback(filtered_tb) from None
File "/tmp/autograph_generated_fileu8lkqd84.py", line 15, in tf__predict_function
retval = ag.converted_call(ag.ld(step_function), (ag_.ld(self), ag__.ld(iterator)), None, fscope)
File "/tmp/autograph_generated_fileu3alfnub.py", line 12, in tf__call
retval = ag_.converted_call(ag__.ld(self).model, (ag_.ld(inputs),), dict(**ag__.ld(kwargs)), fscope)
File “/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/utils/distributed_utils.py”, line 122, in wrapper
res = func(self, *args, **kwargs)
File “/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/model/hailo_model/hailo_model.py”, line 1167, in build
layer.build(layer.input_shapes)
File “/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/hailo_layers/base_hailo_layer.py”, line 1552, in build
self._verify_and_set_hn_io_shapes()
File “/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/hailo_layers/hailo_io.py”, line 224, in _verify_and_set_hn_io_shapes
super()._verify_and_set_hn_io_shapes()
File “/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/hailo_layers/base_hailo_layer.py”, line 1665, in _verify_and_set_hn_io_shapes
if not self._verify_hn_to_keras_shapes(self._get_hn_input_shapes(), input_shapes):
File “/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/hailo_layers/base_hailo_layer.py”, line 1692, in _verify_hn_to_keras_shapes
if not (np.array(keras_shape) == np.array(hn_shape)).all():
AttributeError: in user code:
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/keras/engine/training.py", line 2169, in predict_function *
return step_function(self, iterator)
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/keras/engine/training.py", line 2155, in step_function **
outputs = model.distribute_strategy.run(run_step, args=(data,))
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/keras/engine/training.py", line 2143, in run_step **
outputs = model.predict_step(data)
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/keras/engine/training.py", line 2111, in predict_step
return self(x, training=False)
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/keras/utils/traceback_utils.py", line 70, in error_handler
raise e.with_traceback(filtered_tb) from None
File "/tmp/__autograph_generated_fileu3alfnub.py", line 12, in tf__call
retval_ = ag__.converted_call(ag__.ld(self)._model, (ag__.ld(inputs),), dict(**ag__.ld(kwargs)), fscope)
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/utils/distributed_utils.py", line 122, in wrapper
res = func(self, *args, **kwargs)
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/model/hailo_model/hailo_model.py", line 1167, in build
layer.build(layer.input_shapes)
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/hailo_layers/base_hailo_layer.py", line 1552, in build
self._verify_and_set_hn_io_shapes()
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/hailo_layers/hailo_io.py", line 224, in _verify_and_set_hn_io_shapes
super()._verify_and_set_hn_io_shapes()
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/hailo_layers/base_hailo_layer.py", line 1665, in _verify_and_set_hn_io_shapes
if not self._verify_hn_to_keras_shapes(self._get_hn_input_shapes(), input_shapes):
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/hailo_layers/base_hailo_layer.py", line 1692, in _verify_hn_to_keras_shapes
if not (np.array(keras_shape) == np.array(hn_shape)).all():
AttributeError: Exception encountered when calling layer 'simulation_inference_model' (type SimulationInferenceModel).
in user code:
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/flows/inference_flow.py", line 140, in call *
return self._model(inputs, **kwargs)
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/keras/utils/traceback_utils.py", line 70, in error_handler **
raise e.with_traceback(filtered_tb) from None
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/utils/distributed_utils.py", line 122, in wrapper
res = func(self, *args, **kwargs)
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/model/hailo_model/hailo_model.py", line 1167, in build
layer.build(layer.input_shapes)
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/hailo_layers/base_hailo_layer.py", line 1552, in build
self._verify_and_set_hn_io_shapes()
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/hailo_layers/hailo_io.py", line 224, in _verify_and_set_hn_io_shapes
super()._verify_and_set_hn_io_shapes()
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/hailo_layers/base_hailo_layer.py", line 1665, in _verify_and_set_hn_io_shapes
if not self._verify_hn_to_keras_shapes(self._get_hn_input_shapes(), input_shapes):
File "/local/workspace/hailo_virtualenv/lib/python3.10/site-packages/hailo_model_optimization/acceleras/hailo_layers/base_hailo_layer.py", line 1692, in _verify_hn_to_keras_shapes
if not (np.array(keras_shape) == np.array(hn_shape)).all():
AttributeError: 'bool' object has no attribute 'all'
Call arguments received by layer 'simulation_inference_model' (type SimulationInferenceModel):
• inputs=tf.Tensor(shape=(None, 1024, 3), dtype=float32)
• kwargs={'training': 'False'}
Inference: 0entries [00:00, ?entries/s]