├── LICENSE ├── README.md ├── README_zh.md ├── create_data_lists.py ├── datasets.py ├── detect.py ├── eval.py ├── img ├── 000001.jpg ├── 000022.jpg ├── 000029.jpg ├── 000045.jpg ├── 000062.jpg ├── 000069.jpg ├── 000075.jpg ├── 000082.jpg ├── 000085.jpg ├── 000092.jpg ├── 000098.jpg ├── 000100.jpg ├── 000116.jpg ├── 000124.jpg ├── 000127.jpg ├── 000128.jpg ├── 000139.jpg ├── 000144.jpg ├── 000145.jpg ├── auxconv.jpg ├── baseball.gif ├── bc1.PNG ├── bc2.PNG ├── confloss.jpg ├── cs.PNG ├── ecs1.PNG ├── ecs2.PNG ├── fcconv1.jpg ├── fcconv2.jpg ├── fcconv3.jpg ├── fcconv4.jpg ├── incomplete.jpg ├── jaccard.jpg ├── locloss.jpg ├── matching1.PNG ├── matching2.jpg ├── modifiedvgg.PNG ├── nms1.PNG ├── nms2.PNG ├── nms3.jpg ├── nms4.PNG ├── predconv1.jpg ├── predconv2.jpg ├── predconv3.jpg ├── predconv4.jpg ├── priors1.jpg ├── priors2.jpg ├── reshaping1.jpg ├── reshaping2.jpg ├── totalloss.jpg ├── vgg16.PNG ├── wh1.jpg └── wh2.jpg ├── model.py ├── train.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/README_zh.md -------------------------------------------------------------------------------- /create_data_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/create_data_lists.py -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/datasets.py -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/detect.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/eval.py -------------------------------------------------------------------------------- /img/000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000001.jpg -------------------------------------------------------------------------------- /img/000022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000022.jpg -------------------------------------------------------------------------------- /img/000029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000029.jpg -------------------------------------------------------------------------------- /img/000045.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000045.jpg -------------------------------------------------------------------------------- /img/000062.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000062.jpg -------------------------------------------------------------------------------- /img/000069.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000069.jpg -------------------------------------------------------------------------------- /img/000075.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000075.jpg -------------------------------------------------------------------------------- /img/000082.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000082.jpg -------------------------------------------------------------------------------- /img/000085.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000085.jpg -------------------------------------------------------------------------------- /img/000092.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000092.jpg -------------------------------------------------------------------------------- /img/000098.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000098.jpg -------------------------------------------------------------------------------- /img/000100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000100.jpg -------------------------------------------------------------------------------- /img/000116.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000116.jpg -------------------------------------------------------------------------------- /img/000124.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000124.jpg -------------------------------------------------------------------------------- /img/000127.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000127.jpg -------------------------------------------------------------------------------- /img/000128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000128.jpg -------------------------------------------------------------------------------- /img/000139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000139.jpg -------------------------------------------------------------------------------- /img/000144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000144.jpg -------------------------------------------------------------------------------- /img/000145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/000145.jpg -------------------------------------------------------------------------------- /img/auxconv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/auxconv.jpg -------------------------------------------------------------------------------- /img/baseball.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/baseball.gif -------------------------------------------------------------------------------- /img/bc1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/bc1.PNG -------------------------------------------------------------------------------- /img/bc2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/bc2.PNG -------------------------------------------------------------------------------- /img/confloss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/confloss.jpg -------------------------------------------------------------------------------- /img/cs.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/cs.PNG -------------------------------------------------------------------------------- /img/ecs1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/ecs1.PNG -------------------------------------------------------------------------------- /img/ecs2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/ecs2.PNG -------------------------------------------------------------------------------- /img/fcconv1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/fcconv1.jpg -------------------------------------------------------------------------------- /img/fcconv2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/fcconv2.jpg -------------------------------------------------------------------------------- /img/fcconv3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/fcconv3.jpg -------------------------------------------------------------------------------- /img/fcconv4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/fcconv4.jpg -------------------------------------------------------------------------------- /img/incomplete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/incomplete.jpg -------------------------------------------------------------------------------- /img/jaccard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/jaccard.jpg -------------------------------------------------------------------------------- /img/locloss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/locloss.jpg -------------------------------------------------------------------------------- /img/matching1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/matching1.PNG -------------------------------------------------------------------------------- /img/matching2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/matching2.jpg -------------------------------------------------------------------------------- /img/modifiedvgg.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/modifiedvgg.PNG -------------------------------------------------------------------------------- /img/nms1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/nms1.PNG -------------------------------------------------------------------------------- /img/nms2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/nms2.PNG -------------------------------------------------------------------------------- /img/nms3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/nms3.jpg -------------------------------------------------------------------------------- /img/nms4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/nms4.PNG -------------------------------------------------------------------------------- /img/predconv1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/predconv1.jpg -------------------------------------------------------------------------------- /img/predconv2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/predconv2.jpg -------------------------------------------------------------------------------- /img/predconv3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/predconv3.jpg -------------------------------------------------------------------------------- /img/predconv4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/predconv4.jpg -------------------------------------------------------------------------------- /img/priors1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/priors1.jpg -------------------------------------------------------------------------------- /img/priors2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/priors2.jpg -------------------------------------------------------------------------------- /img/reshaping1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/reshaping1.jpg -------------------------------------------------------------------------------- /img/reshaping2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/reshaping2.jpg -------------------------------------------------------------------------------- /img/totalloss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/totalloss.jpg -------------------------------------------------------------------------------- /img/vgg16.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/vgg16.PNG -------------------------------------------------------------------------------- /img/wh1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/wh1.jpg -------------------------------------------------------------------------------- /img/wh2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/img/wh2.jpg -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/model.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/HEAD/utils.py --------------------------------------------------------------------------------