sgrvinod / a-PyTorch-Tutorial-to-Object-Detection

SSD: Single Shot MultiBox Detector | a PyTorch Tutorial to Object Detection
MIT License
3.02k stars 713 forks source link

Not able to access the pre-trained model #65

Closed zackdilan closed 4 years ago

zackdilan commented 4 years ago

Hi all,

I am not able to untar the pre-trained model. Is the file corrupted? If not, please let me know how to use it?

LukeTonin commented 4 years ago

Hi Robin,

The checkpoint_ssd300.pth.tar is not actually a tar archive. Just remove the .tar extension from the file name and you will be able to load it using torch.load('checkpoint_ssd300.pth').

zackdilan commented 4 years ago

Thanks !!