TensorFlow_Lite_SSD_RPi_64-bits icon indicating copy to clipboard operation
TensorFlow_Lite_SSD_RPi_64-bits copied to clipboard

Newcomer's Basic Questions

Open faithmaker opened this issue 2 years ago • 2 comments

*. Code : MobileNetV1.cpp .... cout << "tensors size: " << interpreter->tensors_size() << "\n"; cout << "nodes size: " << interpreter->nodes_size() << "\n"; cout << "inputs: " << interpreter->inputs().size() << "\n"; cout << "input(0) name: " << interpreter->GetInputName(0) << "\n"; cout << "outputs: " << interpreter->outputs().size() << "\n"; ....

*. The output is something like this. use : detect.tflite tensors size: 184 nodes size: 64 inputs: 1 input(0) name: normalized_input_image_tensor outputs: 4 Fps : 28.5714

*. How I can change tensors_size, nodes size, outputs? use : mobilenet_v1_1.0_224_quant.tflite tensors size: 90 nodes size: 31 inputs: 1 input(0) name: input outputs: 1 Fps : 41.4583

use : mobilenet_v2_1.0_224_quant.tflite tensors size: 174 nodes size: 65 inputs: 1 input(0) name: input outputs: 1 Fps : 50

*. I want to increase my FPS in Mobilenet V1, V2

faithmaker avatar Dec 07 '22 04:12 faithmaker

@faithmaker,

Where did you get the information about mobilenet_v1_1.0_224_quant.tflite from? Which repo?

Qengineering avatar Dec 07 '22 11:12 Qengineering

https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet_v1.md

faithmaker avatar Dec 07 '22 23:12 faithmaker