a-PyTorch-Tutorial-to-Object-Detection icon indicating copy to clipboard operation
a-PyTorch-Tutorial-to-Object-Detection copied to clipboard

SSD: Single Shot MultiBox Detector | a PyTorch Tutorial to Object Detection

Results 74 a-PyTorch-Tutorial-to-Object-Detection issues
Sort by recently updated
recently updated
newest added

My local is window10, when I run the detect.py file on the server side, the picture cannot be displayed, I do n’t know where to modify, when i run [...

Please explain the functinality of the **decimate** function in **utils.py**

In model.py, Line 478 `overlap = find_jaccard_overlap(class_decoded_locs, class_decoded_locs) # (n_qualified, n_min_score) ` Isn’t this two same sets? I think the purpose of the function is to calculate overlap for two...

When I use torch.load to load a model, there exist a problem as follows: ![image](https://user-images.githubusercontent.com/45613228/67469675-1b407780-f67f-11e9-85ab-97e6706c597b.png) I don't know what happened , I just download the checkpoint that you uploaded. Could...

Hi, I hope you can help me to solve the following issue. While training, in the first steps (first half of the batch) error was being computed well, but then...

Hi everyone !!! I'm trying to run this code to train on my own dataset but I'm having this issue. Here is my problem : Traceback (most recent call last):...

Thank you for your SSD , And when I try to run detect.py ,I got a error: `AttributeError: 'DataParallel' object has no attribute 'detect_objects'` Can you tell me how to...

hi Why did you not freeze the layers of VGG backbone before training or Did you leave them on purpose ??

Hello. My apologies for such a (probably) stupid question, but I can not understand how does backpropagation works through the label matching operation via Jaccard index comparison. Can you, please,...

Hi, Thanks for your SSD tutorial, this is the most detailed SSD implementation as far as I know. However, I just noticed you used L1Loss instead of SmoothL1Loss, is there...