You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I've been trying to convert the mtcnn model to tensorflow.js, but so far, I keep getting empty results back. Do you have any idea what I'm doing wrong?
next, I converted the model using this command (details here: https://github.com/tensorflow/tfjs/tree/master/tfjs-converter): tensorflowjs_converter --input_format=tf_frozen_model --output_node_names='prob,landmarks,box' /python/mtcnn.pb /python/mtcnn_web
also tried: tensorflowjs_converter --input_format=tf_frozen_model --output_node_names='prob:0,landmarks:0,box:0' /python/mtcnn.pb /python/mtcnn_web
I also tried with inputs like 'input:0', 'min_size:0'
I'm not getting any errors, but nothing is detected either. So I'm thinking, maybe somehting is wrong with the model conversion?
One thing I'm thinking about: I currently presume that the input format is 'frozen_model' cause of the .pb extension?
Thanks.
The text was updated successfully, but these errors were encountered:
Hi,
I've been trying to convert the mtcnn model to tensorflow.js, but so far, I keep getting empty results back. Do you have any idea what I'm doing wrong?
here's my test code snippet:
tensorflowjs_converter --input_format=tf_frozen_model --output_node_names='prob,landmarks,box' /python/mtcnn.pb /python/mtcnn_web
also tried:
tensorflowjs_converter --input_format=tf_frozen_model --output_node_names='prob:0,landmarks:0,box:0' /python/mtcnn.pb /python/mtcnn_web
I'm not getting any errors, but nothing is detected either. So I'm thinking, maybe somehting is wrong with the model conversion?
One thing I'm thinking about: I currently presume that the input format is 'frozen_model' cause of the .pb extension?
Thanks.
The text was updated successfully, but these errors were encountered: