keras-onnx icon indicating copy to clipboard operation
keras-onnx copied to clipboard

Convert tf.keras/Keras models to ONNX

Results 100 keras-onnx issues
Sort by recently updated
recently updated
newest added

I trained an Efficientnet B2 model using [https://pypi.org/project/efficientnet/] I am using tensorflow==1.14.0 numpy==1.17.0 onnx==1.7.0 Keras==2.2.4 efficientnet==0.0.4 During the conversion, I get multiple warnings ``` WARN: No corresponding ONNX op matches...

I'm trying to convert a `tensorflow.python.keras.engine.functional.Functional` keras model to onnx. The model was saved using the `model.save()` method in `tf.keras`, saving the model in the `SavedModel` format. When trying to...

Hello, Is there a way to explicitly set batch size of onnx model starting from a tf.keras model? I have a tf.keras model with (None, 256, 256, 1) input shape,...

_parser_tf.py if tensor_type in [tf.int8, tf.int16, tf.int32]: return Int32TensorType(shape=tensor_shape)

This error happens while running the unit test with the nightly build.

Hi Im trying to get my trained model .h5 file convert to .onnx file, while I follow the example run the `python mask_rcnn.py ` command, it throw an exception `Traceback...

Hi, I have a question regarding TF2.3 and TF2.4 support. I have a model which is not working with TF2.3 (It worked with TF2.2). The error is ``` ../lib/python3.6/site-packages/keras2onnx/main.py:75: in...

I've trained a mobilenetv2 model on a custom dataset using Keras. After training I saved my model using `model.save`, I tried converting it to onnx using this script: ``` from...

I have a Keras screech model. Convert to onnx working with Python. But ... I want to read it with opencv C++ and discovered that there are many Identity nodes...