├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data ├── coco.names └── samples │ ├── dog.jpg │ ├── eagle.jpg │ ├── giraffe.jpg │ ├── herd_of_horses.jpg │ ├── img1.jpg │ ├── img2.jpg │ ├── img3.jpg │ ├── img4.jpg │ ├── messi.jpg │ └── person.jpg ├── docs └── media │ ├── 0.png │ ├── 1.png │ └── 2.png ├── fonts ├── LICENSE for Roboto-Regular └── Roboto-Regular.ttf ├── requirements.txt ├── src ├── __init__.py ├── config.py ├── datasets │ ├── caltech.py │ ├── coco.py │ ├── image.py │ ├── transforms.py │ └── utils.py ├── inference.py ├── main.py ├── model.py ├── training.py └── utils.py └── weights └── yolov3_original.pt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/README.md -------------------------------------------------------------------------------- /data/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/data/coco.names -------------------------------------------------------------------------------- /data/samples/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/data/samples/dog.jpg -------------------------------------------------------------------------------- /data/samples/eagle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/data/samples/eagle.jpg -------------------------------------------------------------------------------- /data/samples/giraffe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/data/samples/giraffe.jpg -------------------------------------------------------------------------------- /data/samples/herd_of_horses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/data/samples/herd_of_horses.jpg -------------------------------------------------------------------------------- /data/samples/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/data/samples/img1.jpg -------------------------------------------------------------------------------- /data/samples/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/data/samples/img2.jpg -------------------------------------------------------------------------------- /data/samples/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/data/samples/img3.jpg -------------------------------------------------------------------------------- /data/samples/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/data/samples/img4.jpg -------------------------------------------------------------------------------- /data/samples/messi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/data/samples/messi.jpg -------------------------------------------------------------------------------- /data/samples/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/data/samples/person.jpg -------------------------------------------------------------------------------- /docs/media/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/docs/media/0.png -------------------------------------------------------------------------------- /docs/media/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/docs/media/1.png -------------------------------------------------------------------------------- /docs/media/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/docs/media/2.png -------------------------------------------------------------------------------- /fonts/LICENSE for Roboto-Regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/fonts/LICENSE for Roboto-Regular -------------------------------------------------------------------------------- /fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/src/config.py -------------------------------------------------------------------------------- /src/datasets/caltech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/src/datasets/caltech.py -------------------------------------------------------------------------------- /src/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/src/datasets/coco.py -------------------------------------------------------------------------------- /src/datasets/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/src/datasets/image.py -------------------------------------------------------------------------------- /src/datasets/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/src/datasets/transforms.py -------------------------------------------------------------------------------- /src/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/src/datasets/utils.py -------------------------------------------------------------------------------- /src/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/src/inference.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/src/main.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/src/model.py -------------------------------------------------------------------------------- /src/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/src/training.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/src/utils.py -------------------------------------------------------------------------------- /weights/yolov3_original.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westerndigitalcorporation/YOLOv3-in-PyTorch/HEAD/weights/yolov3_original.pt --------------------------------------------------------------------------------