├── README.md ├── README.pdf ├── README_YOLOv4.md ├── cfg ├── wei_score │ └── yolov4-pacsp-x-mish.cfg ├── yolov4-pacsp-mish.cfg ├── yolov4-pacsp-s-mish.cfg ├── yolov4-pacsp-s.cfg ├── yolov4-pacsp-x-mish.cfg ├── yolov4-pacsp-x.cfg ├── yolov4-pacsp.cfg ├── yolov4-paspp.cfg └── yolov4-tiny.cfg ├── data ├── coco.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 ├── myData.data ├── myData.names └── myData │ └── score │ ├── images │ ├── train │ │ └── readme │ └── val │ │ └── readme │ └── labels │ ├── train │ └── readme │ └── val │ └── readme ├── detect.py ├── experiments.md ├── images └── scalingCSP.png ├── models.py ├── pic ├── p0.png ├── p1.png ├── p2.png ├── p3.png ├── p4.png ├── p5.png ├── test1.jpg └── test2.jpg ├── requirements.txt ├── results_yolov4-pacsp-x-mish.txt ├── runs └── readme ├── test.py ├── test_half.py ├── train.py ├── utils ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── datasets.cpython-35.pyc │ ├── google_utils.cpython-35.pyc │ ├── layers.cpython-35.pyc │ ├── parse_config.cpython-35.pyc │ ├── torch_utils.cpython-35.pyc │ └── utils.cpython-35.pyc ├── adabound.py ├── datasets.py ├── evolve.sh ├── gcp.sh ├── google_utils.py ├── layers.py ├── parse_config.py ├── torch_utils.py └── utils.py └── weights └── put your weights file here.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/README.md -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/README.pdf -------------------------------------------------------------------------------- /README_YOLOv4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/README_YOLOv4.md -------------------------------------------------------------------------------- /cfg/wei_score/yolov4-pacsp-x-mish.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/cfg/wei_score/yolov4-pacsp-x-mish.cfg -------------------------------------------------------------------------------- /cfg/yolov4-pacsp-mish.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/cfg/yolov4-pacsp-mish.cfg -------------------------------------------------------------------------------- /cfg/yolov4-pacsp-s-mish.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/cfg/yolov4-pacsp-s-mish.cfg -------------------------------------------------------------------------------- /cfg/yolov4-pacsp-s.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/cfg/yolov4-pacsp-s.cfg -------------------------------------------------------------------------------- /cfg/yolov4-pacsp-x-mish.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/cfg/yolov4-pacsp-x-mish.cfg -------------------------------------------------------------------------------- /cfg/yolov4-pacsp-x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/cfg/yolov4-pacsp-x.cfg -------------------------------------------------------------------------------- /cfg/yolov4-pacsp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/cfg/yolov4-pacsp.cfg -------------------------------------------------------------------------------- /cfg/yolov4-paspp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/cfg/yolov4-paspp.cfg -------------------------------------------------------------------------------- /cfg/yolov4-tiny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/cfg/yolov4-tiny.cfg -------------------------------------------------------------------------------- /data/coco.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/coco.data -------------------------------------------------------------------------------- /data/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/coco.names -------------------------------------------------------------------------------- /data/coco1.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/coco1.data -------------------------------------------------------------------------------- /data/coco1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/coco1.txt -------------------------------------------------------------------------------- /data/coco16.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/coco16.data -------------------------------------------------------------------------------- /data/coco16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/coco16.txt -------------------------------------------------------------------------------- /data/coco1cls.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/coco1cls.data -------------------------------------------------------------------------------- /data/coco1cls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/coco1cls.txt -------------------------------------------------------------------------------- /data/coco2014.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/coco2014.data -------------------------------------------------------------------------------- /data/coco2017.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/coco2017.data -------------------------------------------------------------------------------- /data/coco64.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/coco64.data -------------------------------------------------------------------------------- /data/coco64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/coco64.txt -------------------------------------------------------------------------------- /data/coco_paper.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/coco_paper.names -------------------------------------------------------------------------------- /data/get_coco2014.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/get_coco2014.sh -------------------------------------------------------------------------------- /data/get_coco2017.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/get_coco2017.sh -------------------------------------------------------------------------------- /data/myData.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/myData.data -------------------------------------------------------------------------------- /data/myData.names: -------------------------------------------------------------------------------- 1 | QP 2 | NY 3 | QG 4 | -------------------------------------------------------------------------------- /data/myData/score/images/train/readme: -------------------------------------------------------------------------------- 1 | 此处存放train的image -------------------------------------------------------------------------------- /data/myData/score/images/val/readme: -------------------------------------------------------------------------------- 1 | 此处存放val的image -------------------------------------------------------------------------------- /data/myData/score/labels/train/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/myData/score/labels/train/readme -------------------------------------------------------------------------------- /data/myData/score/labels/val/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/data/myData/score/labels/val/readme -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/detect.py -------------------------------------------------------------------------------- /experiments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/experiments.md -------------------------------------------------------------------------------- /images/scalingCSP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/images/scalingCSP.png -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/models.py -------------------------------------------------------------------------------- /pic/p0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/pic/p0.png -------------------------------------------------------------------------------- /pic/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/pic/p1.png -------------------------------------------------------------------------------- /pic/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/pic/p2.png -------------------------------------------------------------------------------- /pic/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/pic/p3.png -------------------------------------------------------------------------------- /pic/p4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/pic/p4.png -------------------------------------------------------------------------------- /pic/p5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/pic/p5.png -------------------------------------------------------------------------------- /pic/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/pic/test1.jpg -------------------------------------------------------------------------------- /pic/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/pic/test2.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/requirements.txt -------------------------------------------------------------------------------- /results_yolov4-pacsp-x-mish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/results_yolov4-pacsp-x-mish.txt -------------------------------------------------------------------------------- /runs/readme: -------------------------------------------------------------------------------- 1 | tensorboard的log存放在此 -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/test.py -------------------------------------------------------------------------------- /test_half.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/test_half.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/datasets.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/__pycache__/datasets.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/google_utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/__pycache__/google_utils.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/layers.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/__pycache__/layers.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/parse_config.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/__pycache__/parse_config.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/__pycache__/torch_utils.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /utils/adabound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/adabound.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/evolve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/evolve.sh -------------------------------------------------------------------------------- /utils/gcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/gcp.sh -------------------------------------------------------------------------------- /utils/google_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/google_utils.py -------------------------------------------------------------------------------- /utils/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/layers.py -------------------------------------------------------------------------------- /utils/parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/parse_config.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/torch_utils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/utils/utils.py -------------------------------------------------------------------------------- /weights/put your weights file here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataXujing/Pytorch_YOLO-v4/HEAD/weights/put your weights file here.txt --------------------------------------------------------------------------------