keras-onnx
keras-onnx copied to clipboard
Convert tf.keras/Keras models to ONNX
[lipreadnet_small.zip](https://github.com/onnx/keras-onnx/files/5606567/lipreadnet_small.zip)  IndexError Traceback (most recent call last) in ----> 1 onnx_model = keras2onnx.convert_keras(model, model.name) D:\anaconda3\lib\site-packages\keras2onnx\main.py in convert_keras(model, name, doc_string, target_opset, initial_types, channel_first_inputs, debug_mode, custom_op_conversions) 100 parse_graph_modeless(topology, tf_graph, target_opset, input_names,...
When I tried to convert A small version of RoBERT loading by keras to ONNX version, it ran out of this error. Here are the detail info: Traceback (most recent...
Hello, I am using LayerNormalization on my models to replace BacthNormalization in some scenarios. When I try to convert to onnx, a keras model that uses LayerNormalization. I receive the...
in tf 2.2, 2.3 one can encounter that gathering the tensors names, they sometimes are lists of tensors. this commit handles this. related issue: https://github.com/onnx/keras-onnx/issues/602
bug
Resnest cannot be converted. The converted network is incomplete.
I'm trying to export model using the new tensorflow release candidates 2.3.x, and encountered the following error when trying to export an Xception model from `tensorflow.keras.applications.Xception`, thrown from `data_types.py#88`: ```...
Hello, I have keras-contrib installed as a PyPi package and I am using a capsule layer (linked the code below) in one of my models. [https://github.com/keras-team/keras-contrib/blob/master/keras_contrib/layers/capsule.py](url) Previously I was converting...
Probably, this query is better placed on some user forum - but I did not find any. My goal is to use custom operators, which have better performance on slow...
``` Python 3.7.5 (default, Oct 25 2019, 10:52:18) Type 'copyright', 'credits' or 'license' for more information IPython 7.2.0 -- An enhanced Interactive Python. Type '?' for help. In [1]: import...