Project ID: 173213, a FOMO model that counts screws in an image. There is only 1 class in the Model called screw
.
The quantized (int8) Model memory usage seems typical (nice and small) for a FOMO Model:
- RAM USAGE = 244.0K
- FLASH USAGE = 74.6K
Upon running the static_buffer.ino
with an output of:
Edge Impulse standalone inferencing (Arduino)
run_classifier returned: 0
Predictions (DSP: 10 ms., Classification: 1239 ms., Anomaly: 0 ms.):
[0.00000]
(null): 0.00000
- the classification time of 1239 ms seems very long for running on a Sony Spresense
- not to mention the model returns
null
and not the class name ofscrew
When running the float Model:
- RAM USAGE = 898.8K
- FLASH USAGE = 96.6K
the output is:
Edge Impulse Inferencing Demo
Edge Impulse standalone inferencing (Arduino)
run_classifier returned: 0
Predictions (DSP: 11 ms., Classification: 3136 ms., Anomaly: 0 ms.):
[0.00000]
(null): 0.00000
- the memory requirements estimation for the FOMO model alone seems excessive
- the classification time of over 3 seconds seems so very long for running on a Sony Spresense
- again the model returns
null
and not the class name ofscrew
Questions
- Why are the Models returning
null
for the Class type with a prediction value of 0.00000000000000000000000000000000000000000000000000000000000?