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
https://github.com/notAI-tech/NudeNet/releases - I wanted to use this in my program.
So i used https://github.com/onnx/tensorflow-onnx to convert the detector_v2_default_checkpoint_tf.tar model to a model.onnxfile.
I had to use --opset 12 else it would not work.
When i tried to use the model.onnx file in my program - it fails at model.UnmarshalBinary function with error 'No data found'.
Exact cause of failure is model.UnmarshalBinary -> m.decordProto -> m.applyModelProtoGraph -> m.applyModelProtoGraphTensors -> tensorProto.Tensor(). Fails for tensorProto name const_empty_float__1593
The text was updated successfully, but these errors were encountered:
https://github.com/notAI-tech/NudeNet/releases - I wanted to use this in my program.
So i used https://github.com/onnx/tensorflow-onnx to convert the
detector_v2_default_checkpoint_tf.tar
model to amodel.onnx
file.I had to use
--opset 12
else it would not work.When i tried to use the
model.onnx
file in my program - it fails atmodel.UnmarshalBinary
function with error 'No data found'.Exact cause of failure is model.UnmarshalBinary -> m.decordProto -> m.applyModelProtoGraph -> m.applyModelProtoGraphTensors -> tensorProto.Tensor(). Fails for tensorProto name
const_empty_float__1593
The text was updated successfully, but these errors were encountered: