dechunwang
dechunwang
差点以为穿越时空 回到过去
For the first part `iw = (torch.min(boxes[:,:,:,2], query_boxes[:,:,:,2]) - torch.max(boxes[:,:,:,0], query_boxes[:,:,:,0]) + 1)` You are coumputing intersection area's width. Which is` min(anchor.x2 - gt_box.x2) - max(anchor.x1 - gt_box.x1)` You can...
hi, currently it is not supported with batch size other than one. (I don’t have time to rewrite it) You need to rewrite some layers in order to support it....
If you are using one GPU, then you should able to get around 0.90 in easy set in about 84000 iterations. If you are using 4 GPU, 21000 is enough
> > If you are using one GPU, then you should able to get around 0.90 in easy set in about 84000 iterations. If you are using 4 GPU, 21000...
> I din‘t use eval.py, maybe something is wrong with my code. I have another question. We often have large batchsize in recognition task like imagenet, can you tell me...
Here is pretrained weights https://drive.google.com/file/d/19bmuol6CbSqL3pj9SBzUL6UhrxC3XYbC/view
> > Here is pretrained weights > > https://drive.google.com/file/d/19bmuol6CbSqL3pj9SBzUL6UhrxC3XYbC/view > > I couldn't extract it, Probably during compression had an error. Can u compress and share it again, or u...
Hi yaoing, Dataparallel library in pytorch works as follows: splitting the input across the specified devices by chunking in the batch dimension (other objects will be copied once per device)....
Please check whether model save directory exists or not. I am traveling right now, I will upload as soon as I get back. But you should able to get same...