Fateme Bafghi
Fateme Bafghi
Hello there. I have the exact same problem with dynamic inputs, but I could not find a way to cancell softmax during converting pytorch model to onnx. Can you help...
  I am getting the same error when I want to install torch-tensorrt in ubuntu I have installed pytroch, nvidia-pyindex, and nvidia-tensorrt when...
I also get the same error using pytorch 1.13 PyTorch version: 1.13.1+cu116 Is debug build: False CUDA used to build PyTorch: 11.6 ROCM used to build PyTorch: N/A OS: Ubuntu...
I have fixed this error by converting all my // divisions in the code to /. but now I get the following error : onnxruntime.capi.onnxruntime_pybind11_state.InvalidGraph: [ONNXRuntimeError] : 10 : INVALID_GRAPH...
I think it stills force casting to float in some points although I have used int in casting in many parts of my code, I can still see in onnx...
I found what the problem was. apparently, when we cast a value to int by using int(value). it turns into float in onnx graph. I ommited all my casts to...
Thank you very much for your answer. I found the issue. It seems that whenever I have used int() for casting my variable to integer (for example in int(a/b)). it...