Fateme Bafghi

Results 7 comments of 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...

![Screenshot from 2022-09-26 10-11-59](https://user-images.githubusercontent.com/91779797/192209973-0e39d7e9-9b8d-4730-920c-c45fd3f33fe7.png) ![Screenshot from 2022-09-26 10-13-12](https://user-images.githubusercontent.com/91779797/192210151-5a0b806f-6b71-495e-95d8-9e626e7cfc1b.png) 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...