nyanmn
nyanmn
Installation is fine. During the installation, I had one issue with cudnn5.1 and I followed the suggestion [here](https://github.com/rbgirshick/py-faster-rcnn/issues/237) and now installation is fine. Now I test the demo code as...
Using `resnet50_4x16f_baseline.yaml` and `resnet101_8x8f_baseline.yaml`, I have the following error as `RuntimeError: one of the variables needed for gradient computation has been modified by an inplace operation: [torch.cuda.FloatTensor [2, 1024]], which...
Testing ONNX model for [super resolution model](https://github.com/onnx/models/tree/master/vision/super_resolution/sub_pixel_cnn_2016), I have error running [this sample program](https://github.com/onnx/models/blob/master/vision/super_resolution/sub_pixel_cnn_2016/dependencies/Run_Super_Resolution_Model.ipynb). My ONNX version is 1.5.0 with onnxruntime 1.4.0. [Onnxruntime was installed using pip](https://pypi.org/project/onnxruntime/). Pytorch version is...
I am testing to train Emotion FerPlus emotion recognition model. Training has `cuDNN failure 8: CUDNN_STATUS_EXECUTION_FAILED` error. I am using Nvidia GPU TitanRTX 24G. Then change the minibatch_size from 32...
The following code was used in testing super resolution model. ``` orig_img = Image.open("midge_header_2.jpg") img = resizeimage.resize_cover(orig_img, [224,224], validate=False) img_ycbcr = img.convert('YCbCr') img_y_0, img_cb, img_cr = img_ycbcr.split() img_ndarray = np.asarray(img_y_0)...
Hello, I have one application using Spatio temporal action detection using AVA. So the algorithm has slowfast and ava head. I like to convert to ONNX and TensorRT. Now the...
My OS is Ubuntu 20 with CUDA 11.7. Pytorch version is 1.13.1+cu117. When installed MMTraking, the errors are ``` cwd: /home/atic/mmtracking/ Preparing metadata (setup.py) ... error error: metadata-generation-failed ``` and...
I have the following versions installed. ``` ubuntu 20 mmcv version is 1.7.1 mmdet version is 2.28.0 mmtrack version is 0.14.0. ``` Running demo for verification gives me ``` Warning:...
I have installed mmtrack. ``` mmcv version is 1.7.1 mmdet version is 2.28.0 mmtrack version is 0.14.0. ``` When run demo command as `python demo/demo_mot_vis.py configs/mot/deepsort/sort_faster-rcnn_fpn_4e_mot17-private.py --input demo/demo.mp4 --output mot.mp4`...
I am testing 'text_recognition' model with output shape [1,26,37].  My config file is set as ``` name: "text_recognition" platform: "onnxruntime_onnx" max_batch_size : 256 input [ { name: "input.1" data_type:...