alontrais
alontrais
When I write this command python3 demo.py --input_img 20.jpg --output_img output.jpg I get this error Traceback (most recent call last): File "/usr/local/lib/python3.6/dist-packages/tensorflow/python/client/session.py", line 1356, in _do_call return fn(*args) File "/usr/local/lib/python3.6/dist-packages/tensorflow/python/client/session.py",...
I need to convert Yolo model to OpenVINO format for opencv/cvat/auto_annotation. I use opencv CVAT for auto annotation https://github.com/opencv/cvat/tree/develop/cvat/apps/auto_annotation. To annotate a task with a custom model I need to...
I trained a model by trainval_net script. when I run the demo script, I get a RuntimeError: load checkpoint /home/trais_user/pipeline/algorithms/faster-rcnn.pytorch/models//vgg16/pascal_voc/faster_rcnn_1_200_47.pth Traceback (most recent call last): File "demo.py", line 195, in...
I use google colaboratory to run the code. When I run train.py script I get this error: ImportError: /content/faster-rcnn.pytorch/lib/model/roi_crop/_ext/roi_crop/_roi_crop.so: undefined symbol: __cudaPopCallConfiguration I usu pytorch 0.4.0 What could be the...
I use Tesla T4, and add the CUDA_ARCH: -gencode arch=compute_75,code=sm_75 but when I run make.sh I get this error: nvcc fatal : Unsupported gpu architecture 'compute_75' How do I fix...
I used the test script for testing the net. before I multiply the coordinates by scale pt = (detections[0, i, j, 1:]).cpu().numpy() coords = (pt[0], pt[1], pt[2], pt[3]) I get...