onnx-tensorflow
onnx-tensorflow copied to clipboard
Tensorflow Backend for ONNX
**Describe the bug** I want to perform a conversion of a PyTorch Faster RCNN model from custom training using the pretrained torchvision model fasterrcnn_mobilenet_v3_large_320_fpn to TFLite format. The steps I...
**Describe the bug** Traceback (most recent call last): File "convert2onnx/convert_superglue_to_onnx.py", line 124, in main() File "convert2onnx/convert_superglue_to_onnx.py", line 117, in main tf_rep.run((kpts0, scores0, desc0, kpts1, scores1, desc1)) File "/mnt/training/map/zhifeng.lin/code/SuperPoint-SuperGlue-TensorRT/onnx-tensorflow/onnx_tf/backend_rep.py", line 107,...
Hi all, 1. I am trying to run yolov7.pt model on raspberry. as pytorch doesn't directly have supporting packages to run on raspi, I am following this pytorch -> ONNX...
ModuleNotFoundError: No module named 'keras.src.engine' related - https://github.com/tensorflow/addons/issues/2679 as this repo seems to be stale - you can do this for hotfix `pip install git+https://github.com/johndpope/onnx-tensorflow`
> Hi, Kindly help me with the following issue: Code used to convert to onnx from .pt: def convert_to_onnx(model, input_size=(1, 3, 128, 128), onnx_model_path="model.onnx", device='cuda'): dummy_input = torch.randn(*input_size).to(device) # Move...
I'd like to get a Grap/GraphDefinition of the imported model to run the following code: https://github.com/google-research/receptive_field#basic-usage The code I tried to run: ```python model = onnx.load('unet.onnx') g = tf.Graph() with...