├── .gitignore ├── LICENSE ├── MonitorGPUthread.py ├── README.md ├── asserts ├── img_17247.jpg ├── img_17556.jpg ├── img_17895.jpg ├── img_18206.jpg ├── img_18497.jpg └── img_18832.jpg ├── cfg ├── cd53s-yolov3.cfg ├── cd53s.cfg ├── csdarknet53s-panet-spp.cfg ├── csresnext50-panet-spp.cfg ├── temp.cfg ├── yolov3-1cls.cfg ├── yolov3-44-A.cfg ├── yolov3-44.cfg ├── yolov3-asff.cfg ├── yolov3-spp-1cls.cfg ├── yolov3-spp-3cls.cfg ├── yolov3-spp-44-2.cfg ├── yolov3-spp-44-OA.cfg ├── yolov3-spp-44-db.cfg ├── yolov3-spp-44-ldb.cfg ├── yolov3-spp-44-mdb.cfg ├── yolov3-spp-44-pdb.cfg ├── yolov3-spp-44-tsd.cfg ├── yolov3-spp-44.cfg ├── yolov3-spp-matrix.cfg ├── yolov3-spp-pan-scale.cfg ├── yolov3-spp.cfg ├── yolov3-spp3-44.cfg ├── yolov3-spp3.cfg ├── yolov3-tiny-1cls.cfg ├── yolov3-tiny-3cls.cfg ├── yolov3-tiny.cfg ├── yolov3-tiny3-1cls.cfg ├── yolov3-tiny3.cfg ├── yolov3.cfg ├── yolov4-relu.cfg └── yolov4.cfg ├── command.txt ├── data ├── coco.names ├── coco1.data ├── coco1.txt ├── coco16.data ├── coco16.txt ├── coco1cls.data ├── coco1cls.txt ├── coco2014.data ├── coco2017.data ├── coco64.data ├── coco64.txt ├── coco_paper.names ├── get_coco2014.sh ├── get_coco2017.sh ├── rubbish.data ├── rubbish.names ├── rubbish_all.data ├── rubbish_all_coco.data └── rubbish_coco.data ├── deploy_scripts ├── classify_rule.json ├── config.json ├── customize_service.py ├── my_utils │ ├── __init__.py │ ├── google_utils.py │ ├── layers.py │ ├── parse_config.py │ ├── regularization_layers.py │ ├── torch_utils.py │ └── utils.py └── train_classes.txt ├── detect.py ├── font ├── simsun.ttc └── simsun.ttf ├── gen_submit_dir.py ├── hyps └── hyp_default_anchor.txt ├── inference.py ├── models.py ├── my_utils ├── __init__.py ├── adabound.py ├── augmentation.py ├── datasets.py ├── evolve.sh ├── gcp.sh ├── google_utils.py ├── layers.py ├── mutils.py ├── mydatasets.py ├── parse_config.py ├── regularization_layers.py ├── torch_utils.py └── utils.py ├── requirements.txt ├── statistics ├── data_augmentation_for_small_object_detection.ipynb ├── loss.py ├── make_data_for_yolov3.ipynb ├── statistic_on_coco_dataset.ipynb ├── statistic_on_model_performance.ipynb ├── statistics_on_rubbish_datasets.ipynb └── vutils.py ├── test.py ├── train.py ├── tutorial.ipynb └── ultralytics-yolov3.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/LICENSE -------------------------------------------------------------------------------- /MonitorGPUthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/MonitorGPUthread.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/README.md -------------------------------------------------------------------------------- /asserts/img_17247.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/asserts/img_17247.jpg -------------------------------------------------------------------------------- /asserts/img_17556.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/asserts/img_17556.jpg -------------------------------------------------------------------------------- /asserts/img_17895.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/asserts/img_17895.jpg -------------------------------------------------------------------------------- /asserts/img_18206.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/asserts/img_18206.jpg -------------------------------------------------------------------------------- /asserts/img_18497.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/asserts/img_18497.jpg -------------------------------------------------------------------------------- /asserts/img_18832.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/asserts/img_18832.jpg -------------------------------------------------------------------------------- /cfg/cd53s-yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/cd53s-yolov3.cfg -------------------------------------------------------------------------------- /cfg/cd53s.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/cd53s.cfg -------------------------------------------------------------------------------- /cfg/csdarknet53s-panet-spp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/csdarknet53s-panet-spp.cfg -------------------------------------------------------------------------------- /cfg/csresnext50-panet-spp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/csresnext50-panet-spp.cfg -------------------------------------------------------------------------------- /cfg/temp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/temp.cfg -------------------------------------------------------------------------------- /cfg/yolov3-1cls.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-1cls.cfg -------------------------------------------------------------------------------- /cfg/yolov3-44-A.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-44-A.cfg -------------------------------------------------------------------------------- /cfg/yolov3-44.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-44.cfg -------------------------------------------------------------------------------- /cfg/yolov3-asff.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-asff.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp-1cls.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp-1cls.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp-3cls.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp-3cls.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp-44-2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp-44-2.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp-44-OA.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp-44-OA.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp-44-db.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp-44-db.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp-44-ldb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp-44-ldb.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp-44-mdb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp-44-mdb.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp-44-pdb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp-44-pdb.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp-44-tsd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp-44-tsd.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp-44.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp-44.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp-matrix.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp-matrix.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp-pan-scale.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp-pan-scale.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp3-44.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp3-44.cfg -------------------------------------------------------------------------------- /cfg/yolov3-spp3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-spp3.cfg -------------------------------------------------------------------------------- /cfg/yolov3-tiny-1cls.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-tiny-1cls.cfg -------------------------------------------------------------------------------- /cfg/yolov3-tiny-3cls.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-tiny-3cls.cfg -------------------------------------------------------------------------------- /cfg/yolov3-tiny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-tiny.cfg -------------------------------------------------------------------------------- /cfg/yolov3-tiny3-1cls.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-tiny3-1cls.cfg -------------------------------------------------------------------------------- /cfg/yolov3-tiny3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3-tiny3.cfg -------------------------------------------------------------------------------- /cfg/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov3.cfg -------------------------------------------------------------------------------- /cfg/yolov4-relu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov4-relu.cfg -------------------------------------------------------------------------------- /cfg/yolov4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/cfg/yolov4.cfg -------------------------------------------------------------------------------- /command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/command.txt -------------------------------------------------------------------------------- /data/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/coco.names -------------------------------------------------------------------------------- /data/coco1.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/coco1.data -------------------------------------------------------------------------------- /data/coco1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/coco1.txt -------------------------------------------------------------------------------- /data/coco16.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/coco16.data -------------------------------------------------------------------------------- /data/coco16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/coco16.txt -------------------------------------------------------------------------------- /data/coco1cls.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/coco1cls.data -------------------------------------------------------------------------------- /data/coco1cls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/coco1cls.txt -------------------------------------------------------------------------------- /data/coco2014.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/coco2014.data -------------------------------------------------------------------------------- /data/coco2017.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/coco2017.data -------------------------------------------------------------------------------- /data/coco64.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/coco64.data -------------------------------------------------------------------------------- /data/coco64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/coco64.txt -------------------------------------------------------------------------------- /data/coco_paper.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/coco_paper.names -------------------------------------------------------------------------------- /data/get_coco2014.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/get_coco2014.sh -------------------------------------------------------------------------------- /data/get_coco2017.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/get_coco2017.sh -------------------------------------------------------------------------------- /data/rubbish.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/rubbish.data -------------------------------------------------------------------------------- /data/rubbish.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/rubbish.names -------------------------------------------------------------------------------- /data/rubbish_all.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/rubbish_all.data -------------------------------------------------------------------------------- /data/rubbish_all_coco.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/rubbish_all_coco.data -------------------------------------------------------------------------------- /data/rubbish_coco.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/data/rubbish_coco.data -------------------------------------------------------------------------------- /deploy_scripts/classify_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/deploy_scripts/classify_rule.json -------------------------------------------------------------------------------- /deploy_scripts/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/deploy_scripts/config.json -------------------------------------------------------------------------------- /deploy_scripts/customize_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/deploy_scripts/customize_service.py -------------------------------------------------------------------------------- /deploy_scripts/my_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy_scripts/my_utils/google_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/deploy_scripts/my_utils/google_utils.py -------------------------------------------------------------------------------- /deploy_scripts/my_utils/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/deploy_scripts/my_utils/layers.py -------------------------------------------------------------------------------- /deploy_scripts/my_utils/parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/deploy_scripts/my_utils/parse_config.py -------------------------------------------------------------------------------- /deploy_scripts/my_utils/regularization_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/deploy_scripts/my_utils/regularization_layers.py -------------------------------------------------------------------------------- /deploy_scripts/my_utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/deploy_scripts/my_utils/torch_utils.py -------------------------------------------------------------------------------- /deploy_scripts/my_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/deploy_scripts/my_utils/utils.py -------------------------------------------------------------------------------- /deploy_scripts/train_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/deploy_scripts/train_classes.txt -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/detect.py -------------------------------------------------------------------------------- /font/simsun.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/font/simsun.ttc -------------------------------------------------------------------------------- /font/simsun.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/font/simsun.ttf -------------------------------------------------------------------------------- /gen_submit_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/gen_submit_dir.py -------------------------------------------------------------------------------- /hyps/hyp_default_anchor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/hyps/hyp_default_anchor.txt -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/inference.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/models.py -------------------------------------------------------------------------------- /my_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /my_utils/adabound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/my_utils/adabound.py -------------------------------------------------------------------------------- /my_utils/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/my_utils/augmentation.py -------------------------------------------------------------------------------- /my_utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/my_utils/datasets.py -------------------------------------------------------------------------------- /my_utils/evolve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/my_utils/evolve.sh -------------------------------------------------------------------------------- /my_utils/gcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/my_utils/gcp.sh -------------------------------------------------------------------------------- /my_utils/google_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/my_utils/google_utils.py -------------------------------------------------------------------------------- /my_utils/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/my_utils/layers.py -------------------------------------------------------------------------------- /my_utils/mutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/my_utils/mutils.py -------------------------------------------------------------------------------- /my_utils/mydatasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/my_utils/mydatasets.py -------------------------------------------------------------------------------- /my_utils/parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/my_utils/parse_config.py -------------------------------------------------------------------------------- /my_utils/regularization_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/my_utils/regularization_layers.py -------------------------------------------------------------------------------- /my_utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/my_utils/torch_utils.py -------------------------------------------------------------------------------- /my_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/my_utils/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/requirements.txt -------------------------------------------------------------------------------- /statistics/data_augmentation_for_small_object_detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/statistics/data_augmentation_for_small_object_detection.ipynb -------------------------------------------------------------------------------- /statistics/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/statistics/loss.py -------------------------------------------------------------------------------- /statistics/make_data_for_yolov3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/statistics/make_data_for_yolov3.ipynb -------------------------------------------------------------------------------- /statistics/statistic_on_coco_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/statistics/statistic_on_coco_dataset.ipynb -------------------------------------------------------------------------------- /statistics/statistic_on_model_performance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/statistics/statistic_on_model_performance.ipynb -------------------------------------------------------------------------------- /statistics/statistics_on_rubbish_datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/statistics/statistics_on_rubbish_datasets.ipynb -------------------------------------------------------------------------------- /statistics/vutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/statistics/vutils.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/train.py -------------------------------------------------------------------------------- /tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/tutorial.ipynb -------------------------------------------------------------------------------- /ultralytics-yolov3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selous123/yolov3-pytorch-custom/HEAD/ultralytics-yolov3.md --------------------------------------------------------------------------------