Ehtesham Iqbal

Results 8 comments of Ehtesham Iqbal

I found one solution. we need to change the inplace operation to non -inplace operations. There was some operation in ours.py file. i re-wrote the codes of lines. ![image](https://user-images.githubusercontent.com/79190474/181162885-7390d3c5-00fb-460b-88c6-0505cb481135.png)

> I've tried to export it but there is a mishape error caused by this line > > https://github.com/saic-vul/ritm_interactive_segmentation/blob/708182de6e3a73da4034579935aef4c19ceae80a/isegm/model/ops.py#L77 I had the same issue. but after removing that coords[invalid_points, :,...

Hello, i just want to use inference in onnx. So i do some changing in ops.py file - use else condition instead of if in ops.py file - remove coords[invalid_points,...

Hello, I think you need to convert onnx into simple onnx using onnxsim , then convert it into TRT. example: from onnxsim import simplify model_onnx = onnx.load(output_dir+'.onnx') model_simp, check =...

If you share the conversion code of onnx. We may find the probelm. To use different batch size , you need to use dynamic axis during onnx conversion. please share...

Onnx and TRT. I implement the official Parseq with pytorch 1.10 and then converted it to onnx using author code. I used onnx-simplify 0.4.13 to simplify the onnx and used...

> cuDNN 8.6.0 Hello, Do you successfully v converted to TRT with these version without any inference problem? Did you comment break point while converting to Onnx. Did you use...