├── README.md ├── bbox.py ├── config ├── coco.data ├── coco.names └── yolov3.cfg ├── createlist.py ├── models.py ├── train.py └── utils ├── datasets.py ├── parse_config.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfotache/pytorch_custom_yolo_training/HEAD/README.md -------------------------------------------------------------------------------- /bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfotache/pytorch_custom_yolo_training/HEAD/bbox.py -------------------------------------------------------------------------------- /config/coco.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfotache/pytorch_custom_yolo_training/HEAD/config/coco.data -------------------------------------------------------------------------------- /config/coco.names: -------------------------------------------------------------------------------- 1 | DRILL 2 | EXTINGUISHER 3 | RESCUE_RANDY -------------------------------------------------------------------------------- /config/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfotache/pytorch_custom_yolo_training/HEAD/config/yolov3.cfg -------------------------------------------------------------------------------- /createlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfotache/pytorch_custom_yolo_training/HEAD/createlist.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfotache/pytorch_custom_yolo_training/HEAD/models.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfotache/pytorch_custom_yolo_training/HEAD/train.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfotache/pytorch_custom_yolo_training/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfotache/pytorch_custom_yolo_training/HEAD/utils/parse_config.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfotache/pytorch_custom_yolo_training/HEAD/utils/utils.py --------------------------------------------------------------------------------