onnx2keras
onnx2keras copied to clipboard
Convert ONNX model graph to Keras model format.
File "D:\pytorchToJson\venv\lib\site-packages\onnx2keras\converter.py", line 175, in onnx_to_keras AVAILABLE_CONVERTERS[node_type]( KeyError: 'Resize' Please help to update on above error. ONNX version - 1.7.0 Opset version - 11 onnx2keras version - 0.0.24 Please let...
```--------------------------------------------------------------------------- KeyError Traceback (most recent call last) in 1 from onnx2keras import onnx_to_keras 2 model=onnx.load("optimized_mobile_pydnet.onnx") ----> 3 k_model = onnx_to_keras(onnx_model=model, input_names=['input']) ~/anaconda3/envs/e2r/lib/python3.7/site-packages/onnx2keras/converter.py in onnx_to_keras(onnx_model, input_names, input_shapes, name_policy, verbose, change_ordering) 179...
Hi everybody, I'd like to convert my tfjs graph model to keras. For this, I converted my model tfjs in onnx using the "tf2onnx" git. And now, I need to...
Hello. I was using pytorch2keras, and I asked for this error on https://github.com/nerox8664/pytorch2keras/issues/122#issuecomment-755438313 They told me this may be from onnx2keras. Can someone help me to fix it?
When I try to re-import a Keras model. I get an error about invalid scope names in Tensorflow. The mentioned scope had a `:` in it's name. ``` model =...
Hi, Thank you for this very friendly and beautiful tool. I was trying to convert a Pytorch model that runs global-average-pooling after the last conv layer and before the first...
Hey, doing the basic step, to LSTM model. `` # Returns a compiled model identical to the previous one onnx_model = onnx.load("stock_price.onnx") k_model_onnx = onnx_to_keras(onnx_model, 'lstm_input', name_policy="short") k_model_onnx.graph = tf.compat.v1.get_default_graph()...
Hi, Trying to convert a pretty simple onnx to keras I'm getting a strange split from the input and 2 Lambda functions... I would expect the output h5 to be...
Hi, I tried to load a simple two layered [ONNX model ](https://github.com/nerox8664/onnx2keras/files/6337452/simple_cnn.txt) exported with pytorch: ``` k_model = onnx2keras.onnx_to_keras("simple_cnn.txt", ["input.1"]) ``` but, i got the following output and error: ```...
I am trying to convert tiny yolov3 onnx model to keras. I get 'list out of index' error. Code: ``` import onnx from onnx2keras import onnx_to_keras onnx_model = onnx.load("yolov3-tiny.onnx") #...