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

Hello How are you? Thanks for contributing this project. Could u provide a method to convert ONNX to tensorflow savedmodel? Thanks

**Describe the bug** There is a calculation error and performance hit when exporting certain dilated 2d convolutions from tensorflow to ONNX and then evaluating that ONNX in tensorflow again. It...

**Describe the bug** I converted a custom ONNX model (pytorch--> ONNX) to TF. The model has a DepthToSpace layer right before the output. Upon visualizing the converted TF graph on...

Thank you very much for your team's work. In the process of PyTorch >> OnNX >>tf.pb, the ONNX model was NCHW, but after converting ONNX to tf.pb, each convolutional layer...

Hello, I used your library to convert a model from onnx to tensorflow to tflite, then when I tried to run the model for influence, following error is generated: Can...

I am trying to export some ONNX model to Tensorflow and then use it for inference (possibly on another environment). Here is an example of exporting MNIST model: ```python import...

Hey, I'm trying to convert a pretrained ONNX model to TF (in order to use it in an android app). While trying this in cmd: `onnx-tf convert -i model.onnx -o...

I have a tensorflow checkpoint file and I was trying to convert it into onnx model. However, I got the following error: `tensorflow.python.framework.errors_impl.FailedPreconditionError: Attempting to use uninitialized value cpu_variables/generator_im/l14/batch_norm/beta/Adam` Is...

**Describe the bug** onnx_tf allocates a lot of memory on the GPU (two GPUs, actually) in the `prepare` function despite the `device='CPU'` parameter being present. This leads to out of...

tf-gpu:1.5.0 python:3.6.0 onnx:1.4.1 onnx-tf:1.2.1 I'm sorry that I can't offer the model。 the code is as follow: ``` with tf.gfile.GFile("yolo_0119_final.pb", "rb") as f: graph_def = tf.GraphDef() graph_def.ParseFromString(f.read()) onnx_model = tensorflow_graph_to_onnx_model(graph_def,...