maudzung / Complex-YOLOv4-Pytorch

The PyTorch Implementation based on YOLOv4 of the paper: "Complex-YOLO: Real-time 3D Object Detection on Point Clouds"
https://arxiv.org/pdf/1803.06199.pdf
GNU General Public License v3.0
1.21k stars 260 forks source link

test.py Runtime Error #71

Open asdsahdi opened 3 months ago

asdsahdi commented 3 months ago

微信图片_20240322090053 微信图片_20240322090018 I got this Runtime Error

nikitamalviya commented 3 months ago

You need to give args --pretrained_path and --cfgfile while running test.py

Download the weights from the given link: https://drive.google.com/drive/folders/1RHD9PBvk-9SjbKwoi_Q1kl9-UGFo2Pth

cmd:

python test.py --gpu_idx 0 --pretrained_path ../checkpoints/complex_yolov4/complex_yolov4_mse_loss.pth --cfgfile ./config/cfg/complex_yolov4.cfg --show_image

asdsahdi commented 3 months ago

Thank you, solved the problem according to your suggestion

asdsahdi commented 3 months ago

You need to give args --pretrained_path and --cfgfile while running test.py

Download the weights from the given link: https://drive.google.com/drive/folders/1RHD9PBvk-9SjbKwoi_Q1kl9-UGFo2Pth

cmd:

python test.py --gpu_idx 0 --pretrained_path ../checkpoints/complex_yolov4/complex_yolov4_mse_loss.pth --cfgfile ./config/cfg/complex_yolov4.cfg --show_image

Thank you for solving the problem according to your suggestion

asdsahdi commented 3 months ago

Thank you for solving the problem according to your suggestion