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

Tensorflow Backend for ONNX

Results 136 onnx-tensorflow issues
Sort by recently updated
recently updated
newest added

https://github.com/onnx/tutorials/blob/master/tutorials/OnnxTensorflowImport.ipynb Inspecting the code, it does not really import to tensorflow, not even sure why it is called importing to tf. the imported so cald tf_rep appears to be onnx's...

**Describe the bug** While trying to convert a small ~90 MB ONNX model to TensorFlow, it takes forever on some models. **To Reproduce** ```py onnx_model = onnx.load(model_onnx) onnx.checker.check_model(onnx_model) tf_rep =...

I convert a model from pytorch to onnx and than to tflite, the tflite shape is NCHW.run slowly on android , but the NHWC shape tflite is faster. the same...

`The Conv2D op currently only supports the NHWC tensor format on the CPU. The op was given the format: NCHW` How to make a convert?

**Describe the bug** I need to convert my PyTorch model to Tensorflow. For this purpose I use _PyTorch —> ONNX —> Tensorflow_ approach. However, I get the following error message...

# Is there a way to go from PyTorch model with ConvTranspose2d with Dilation!=1 to ONNX and from ONNX to TensorFlow? ### Question I have a model in PyTorch (see...

**Describe the bug** I have an ONNX model (opset 11) exported from PyTorch's [EffficientNet](https://github.com/lukemelas/EfficientNet-PyTorch) implementation. My goal is to convert the ONNX model to TensorFLow (SavelModel) to perform inference from...

**Describe the bug** I'm trying to convert a PyTorch LSTM model to Tensorflow via ONNX. The conversion from PyTorch to ONNX runs smoothly without problems, and obtaining a `tf_rep` via...

**I'm trying to convert my PyTorch model into Tensorflow. I have successfully convert my PyTorch model into .onnx format using opset=11. But When I try to convert .onnx to tensorflow...

Traceback (most recent call last): File "onnx2tf.py", line 13, in file.write(output.graph.as_graph_def().SerializeToString()) AttributeError: 'NoneType' object has no attribute 'as_graph_def' My environment - Python version: 3.8.10 - onnx version: 1.9.0 - onnx-tf...