RefineDet.PyTorch icon indicating copy to clipboard operation
RefineDet.PyTorch copied to clipboard

A higher performance PyTorch implementation of Single-Shot Refinement Neural Network for Object Detection

Results 13 RefineDet.PyTorch issues
Sort by recently updated
recently updated
newest added

运行eval_refinedet.py程序,报出以下错误: no_object_index = arm_object_conf

refinedet_multibox_loss.py 第 78行: for idx in range(num): truths = targets[idx][:, :-1].data labels = targets[idx][:, -1].data if num_classes == 2: labels = labels >= 0 这里为啥修正 if num_classes == 2的情况,导致后面的 refine_match(self.threshold,...

出现错误:loss_c[pos.view(-1,1)] = 0 # filter out pos boxes for now RuntimeError: copy_if failed to synchronize: device-side assert triggered 我的实际类别是1,设置了config中'num_classes': 2,但是还是出现这个问题,设置num_classes为3却可以正常训练!请问怎么解决?

File "train_refinedet.py", line 289, in train() File "train_refinedet.py", line 203, in train odm_loss_l, odm_loss_c = odm_criterion(out, targets) File "/home/shaoyidu/Program/anaconda3/envs/pytorch/lib/python3.6/site-packages/torch/nn/modules/module.py", line 491, in __call__ result = self.forward(*input, **kwargs) File "/home/shaoyidu/Program/LH/RefineDet.PyTorch/layers/modules/refinedet_multibox_loss.py", line...

测试模式,当第一次运行到refinedet.py的forward的以下代码的时候: ``` for k in range(30): x = self.vgg[k](x)############### if 22 == k: s = self.conv4_3_L2Norm(x) sources.append(s) elif 29 == k: s = self.conv5_3_L2Norm(x) sources.append(s) # apply vgg up to...

Do anyone successfully train on coco and reach the paper accuracy? (refinedet 320 VGG: 29.4) Can somebody provide the coco evaluation code? I want to train coco myself but I...

Traceback (most recent call last): File "", line 1, in runfile('C:/Users/leevov/Desktop/RefineDet.PyTorch-master/train_refinedet.py', wdir='C:/Users/leevov/Desktop/RefineDet.PyTorch-master') File "C:\Users\leevov\Anaconda3\lib\site-packages\spyder_kernels\customize\spydercustomize.py", line 827, in runfile execfile(filename, namespace) File "C:\Users\leevov\Anaconda3\lib\site-packages\spyder_kernels\customize\spydercustomize.py", line 110, in execfile exec(compile(f.read(), filename, 'exec'), namespace)...

Traceback (most recent call last): File "eval.py", line 446, in thresh=args.confidence_threshold) File "eval.py", line 420, in test_net evaluate_detections(all_boxes, output_dir, dataset) File "eval.py", line 425, in evaluate_detections do_python_eval(output_dir) File "eval.py", line...