Hello,
I'm developing a project using tensorflow 1.15 to detect multiple objects. To start with the JeVois card, I followed the tutorial:
*http://jevois.org/tutorials/UserTensorFlowTraining.html
By following several online tutorials, I was able to customize and train my model. I've checked my model and it works fine on the computer. So I decided to export it in a lite version. I use the following command:
tflite_convert \
--graph_def_file=tflite/tflite_graph.pb \
--output_file=tflite/jevois_model.tflite \
--input_format=TENSORFLOW_GRAPHDEF \
--output_format=TFLITE \
--input_shape=1,128,128,3 \
--input_array=normalized_input_image_tensor \
--output_arrays='TFLite_Detection_PostProcess','TFLite_Detection_PostProcess:1','TFLite_Detection_PostProcess:2','TFLite_Detection_PostProcess:3' \
--inference_type=FLOAT \
--input_data_type=FLOAT \
--allow_custom_ops
Once I get the model in lite version, I change the name to model.tflite and I also create my labels file. However, when I try to make it work on the card, the following message is displayed
Loading network
Please wait...
I've waited several minutes (20) and the model never initializes. could you help me? Because I don't know what the problem could be.