We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
*. 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
The text was updated successfully, but these errors were encountered:
@faithmaker,
Where did you get the information about mobilenet_v1_1.0_224_quant.tflite from? Which repo?
Sorry, something went wrong.
https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet_v1.md
No branches or pull requests
*. 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
The text was updated successfully, but these errors were encountered: