Skip to content
New issue

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

Newcomer's Basic Questions #7

Open
faithmaker opened this issue Dec 7, 2022 · 2 comments
Open

Newcomer's Basic Questions #7

faithmaker opened this issue Dec 7, 2022 · 2 comments

Comments

@faithmaker
Copy link

faithmaker commented Dec 7, 2022

*. 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

@Qengineering
Copy link
Owner

@faithmaker,

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

@faithmaker
Copy link
Author

faithmaker commented Dec 7, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants