chunyan

Results 8 issues of chunyan

Thank you so much for your wonderful paper! I have really enjoyed it! When I try the demo of the code , problem occurs. `FileNotFoundError: [Errno 2] No such file...

I try to install mmcv-full using below the version of cuda I have installed, some errors occur. But when I install pytorch using below the version of cuda I have...

Can mmcv be packaged as an EXE file and run directly on a machine without a virtual environment? I try it using pyinstaller but it occurs: ![图片](https://user-images.githubusercontent.com/77584410/188052035-0e404e61-8b70-4700-b51c-5199235266c4.png)

I have set ``` data = dict( train=dict( pipeline=train_pipeline, ann_file=data_root + 'train/txt_label/', img_prefix=data_root + 'train/trainimg/'), val=dict( ann_file=data_root + 'val/txt_label/', img_prefix=data_root + 'val/valimg/'), test=dict( ann_file=data_root + 'test/images/', img_prefix=data_root + 'test/images/')) ```...

Add these codes to the file ``` if __name__=='__main__': net = generate_model('S',).cuda() #print(net) from torchsummary import summary inputs = torch.rand(8, 3, 10, 112, 112).cuda() output = net(inputs) print(output.shape) summary(net,input_size=(3,10,112,112),batch_size=8,device='cuda') ```...

请问这个是什么原因呢 ``` Traceback (most recent call last): File "detect.py", line 175, in detect() File "detect.py", line 116, in detect plot_one_box(xywh, im0, label=label, color=colors[int(cls)], line_thickness=3, path=path) File "D:\master\code\car_detection\rotation-yolov5-master\utils\general.py", line 1332, in...

Why do I train 80% on one dataset, but only 60% when I train again.