├── .dockerignore ├── .gitattributes ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── OFFICAL_README.md ├── README.md ├── data ├── Argoverse.yaml ├── Fruit.yaml ├── GlobalWheat2020.yaml ├── Objects365.yaml ├── SKU-110K.yaml ├── VOC.yaml ├── VOC2007.yaml ├── VOC_val_500.yaml ├── VisDrone.yaml ├── abnormal_driving.yaml ├── coco.yaml ├── coco128.yaml ├── hyps │ ├── hyp.Objects365.yaml │ ├── hyp.VOC.yaml │ ├── hyp.scratch-high.yaml │ ├── hyp.scratch-low.yaml │ └── hyp.scratch-med.yaml ├── images │ ├── bus.jpg │ └── zidane.jpg ├── scripts │ ├── download_weights.sh │ ├── get_coco.sh │ ├── get_coco128.sh │ └── get_voc.sh └── xView.yaml ├── demo_test.py ├── detect.py ├── export.py ├── hubconf.py ├── maketxt.py ├── models ├── __init__.py ├── abnormal_driving │ ├── yolov5l_bifpn_dd.yaml │ ├── yolov5l_ca_dd.yaml │ ├── yolov5l_dd.yaml │ ├── yolov5l_ghost_bifpn_ca_dd.yaml │ ├── yolov5l_ghost_dd.yaml │ ├── yolov5m_bifpn_dd.yaml │ ├── yolov5m_ca_dd.yaml │ ├── yolov5m_dd.yaml │ ├── yolov5m_ghost_bifpn_ca_dd.yaml │ ├── yolov5m_ghost_dd.yaml │ ├── yolov5n_dd.yaml │ ├── yolov5n_ghost_bifpn_ca_dd.yaml │ ├── yolov5n_ghost_dd.yaml │ ├── yolov5s_bifpn_dd.yaml │ ├── yolov5s_ca_dd.yaml │ ├── yolov5s_dd.yaml │ ├── yolov5s_ghost_bifpn2_ca_dd.yaml │ ├── yolov5s_ghost_bifpn_ca_dd.yaml │ ├── yolov5s_ghost_ca_dd.yaml │ ├── yolov5s_ghost_dd.yaml │ ├── yolov5x_bifpn_dd.yaml │ ├── yolov5x_ca_dd.yaml │ ├── yolov5x_dd.yaml │ ├── yolov5x_ghost_bifpn_ca_dd.yaml │ ├── yolov5x_ghost_ca_dd.yaml │ └── yolov5x_ghost_dd.yaml ├── bishe_voc │ ├── yolov5l_ghost_bifpn_ca_voc.yaml │ ├── yolov5l_voc.yaml │ ├── yolov5m_ghost_bifpn_ca_voc.yaml │ ├── yolov5m_voc.yaml │ ├── yolov5n_ghost_bifpn_ca_voc.yaml │ ├── yolov5n_voc.yaml │ ├── yolov5s_ca_voc.yaml │ ├── yolov5s_ghost_bifpn_ca_voc.yaml │ ├── yolov5s_ghost_bifpn_voc.yaml │ ├── yolov5s_ghost_voc.yaml │ ├── yolov5s_voc.yaml │ ├── yolov5x_ghost_bifpn_ca_voc.yaml │ └── yolov5x_voc.yaml ├── common.py ├── experimental.py ├── hub │ ├── anchors.yaml │ ├── yolov3-spp.yaml │ ├── yolov3-tiny.yaml │ ├── yolov3.yaml │ ├── yolov5-bifpn.yaml │ ├── yolov5-fpn.yaml │ ├── yolov5-p2.yaml │ ├── yolov5-p34.yaml │ ├── yolov5-p6.yaml │ ├── yolov5-p7.yaml │ ├── yolov5-panet.yaml │ ├── yolov5l6.yaml │ ├── yolov5m6.yaml │ ├── yolov5n6.yaml │ ├── yolov5s-ghost.yaml │ └── yolov5s-transformer.yaml ├── tf.py ├── yolo.py ├── yolov5l.yaml ├── yolov5m.yaml ├── yolov5n.yaml ├── yolov5s-bifpn-new.yaml ├── yolov5s-voc │ ├── yolov5s-bifpn-ca-voc.yaml │ ├── yolov5s-bifpn-voc.yaml │ ├── yolov5s-bifpn_new-voc.yaml │ ├── yolov5s-ca-voc.yaml │ ├── yolov5s-cbam-voc.yaml │ ├── yolov5s-ghostbottleneck-ca-voc.yaml │ ├── yolov5s-ghostconv-bifpn-ca-voc.yaml │ ├── yolov5s-ghostconv-bifpn1-ca-voc.yaml │ ├── yolov5s-ghostconv-bifpn4-ca-voc.yaml │ ├── yolov5s-ghostconv-bifpn_new-ca-voc.yaml │ ├── yolov5s-ghostconv-bifpn_new-voc.yaml │ ├── yolov5s-ghostconv-ca-voc.yaml │ ├── yolov5s-ghostconv-voc.yaml │ ├── yolov5s-ghostnet-bifpn-ca-voc.yaml │ ├── yolov5s-ghostnet-bifpn-voc.yaml │ ├── yolov5s-mobilenet-voc.yaml │ ├── yolov5s-p2-p5-voc.yaml │ ├── yolov5s-shufflenet-voc.yaml │ ├── yolov5s-voc.yaml │ ├── yolov5x-ghostconv-bifpn_new-ca-voc.yaml │ └── yolov5x-voc.yaml ├── yolov5s.yaml ├── yolov5s6.yaml ├── yolov5x.yaml └── yolov5x6.yaml ├── readme.md ├── requirements.txt ├── setup.cfg ├── test ├── activation_test.py ├── data_augment_test.py ├── demo.py ├── focus_vs_conv.py ├── gpu_memory.py ├── images │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ └── 4.jpg ├── labels │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ └── 4.txt ├── model_test.py ├── outputs │ ├── cutmix.jpg │ ├── cutout.jpg │ ├── fliplr.jpg │ ├── flipud.jpg │ ├── hsv.jpg │ ├── mixup.jpg │ ├── mixup_origin.jpg │ ├── mosaic_with_label.jpg │ ├── mosaic_without_label.jpg │ ├── perspective.jpg │ ├── rotation.jpg │ ├── scale.jpg │ ├── shear.jpg │ └── translation.jpg ├── param_metric_test.py ├── spp_vs_sppf.py └── train_test.py ├── train.py ├── tutorial.ipynb ├── utils ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── activations.cpython-38.pyc │ ├── augmentations.cpython-38.pyc │ ├── autoanchor.cpython-38.pyc │ ├── autobatch.cpython-38.pyc │ ├── callbacks.cpython-38.pyc │ ├── datasets.cpython-38.pyc │ ├── downloads.cpython-38.pyc │ ├── general.cpython-38.pyc │ ├── loss.cpython-38.pyc │ ├── metrics.cpython-38.pyc │ ├── plots.cpython-38.pyc │ └── torch_utils.cpython-38.pyc ├── activations.py ├── augmentations.py ├── autoanchor.py ├── autobatch.py ├── aws │ ├── __init__.py │ ├── mime.sh │ ├── resume.py │ └── userdata.sh ├── benchmarks.py ├── callbacks.py ├── datasets.py ├── downloads.py ├── flask_rest_api │ ├── README.md │ ├── example_request.py │ └── restapi.py ├── general.py ├── google_app_engine │ ├── Dockerfile │ ├── additional_requirements.txt │ └── app.yaml ├── loggers │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ └── wandb │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── wandb_utils.cpython-38.pyc │ │ ├── log_dataset.py │ │ ├── sweep.py │ │ ├── sweep.yaml │ │ └── wandb_utils.py ├── loss.py ├── metrics.py ├── plots.py └── torch_utils.py ├── val.py ├── xml2txt.py └── 改进算法整体框架.png /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/LICENSE -------------------------------------------------------------------------------- /OFFICAL_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/OFFICAL_README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/README.md -------------------------------------------------------------------------------- /data/Argoverse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/Argoverse.yaml -------------------------------------------------------------------------------- /data/Fruit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/Fruit.yaml -------------------------------------------------------------------------------- /data/GlobalWheat2020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/GlobalWheat2020.yaml -------------------------------------------------------------------------------- /data/Objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/Objects365.yaml -------------------------------------------------------------------------------- /data/SKU-110K.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/SKU-110K.yaml -------------------------------------------------------------------------------- /data/VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/VOC.yaml -------------------------------------------------------------------------------- /data/VOC2007.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/VOC2007.yaml -------------------------------------------------------------------------------- /data/VOC_val_500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/VOC_val_500.yaml -------------------------------------------------------------------------------- /data/VisDrone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/VisDrone.yaml -------------------------------------------------------------------------------- /data/abnormal_driving.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/abnormal_driving.yaml -------------------------------------------------------------------------------- /data/coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/coco.yaml -------------------------------------------------------------------------------- /data/coco128.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/coco128.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.Objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/hyps/hyp.Objects365.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/hyps/hyp.VOC.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.scratch-high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/hyps/hyp.scratch-high.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.scratch-low.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/hyps/hyp.scratch-low.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.scratch-med.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/hyps/hyp.scratch-med.yaml -------------------------------------------------------------------------------- /data/images/bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/images/bus.jpg -------------------------------------------------------------------------------- /data/images/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/images/zidane.jpg -------------------------------------------------------------------------------- /data/scripts/download_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/scripts/download_weights.sh -------------------------------------------------------------------------------- /data/scripts/get_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/scripts/get_coco.sh -------------------------------------------------------------------------------- /data/scripts/get_coco128.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/scripts/get_coco128.sh -------------------------------------------------------------------------------- /data/scripts/get_voc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/scripts/get_voc.sh -------------------------------------------------------------------------------- /data/xView.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/data/xView.yaml -------------------------------------------------------------------------------- /demo_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/demo_test.py -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/detect.py -------------------------------------------------------------------------------- /export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/export.py -------------------------------------------------------------------------------- /hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/hubconf.py -------------------------------------------------------------------------------- /maketxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/maketxt.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5l_bifpn_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5l_bifpn_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5l_ca_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5l_ca_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5l_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5l_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5l_ghost_bifpn_ca_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5l_ghost_bifpn_ca_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5l_ghost_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5l_ghost_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5m_bifpn_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5m_bifpn_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5m_ca_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5m_ca_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5m_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5m_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5m_ghost_bifpn_ca_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5m_ghost_bifpn_ca_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5m_ghost_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5m_ghost_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5n_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5n_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5n_ghost_bifpn_ca_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5n_ghost_bifpn_ca_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5n_ghost_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5n_ghost_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5s_bifpn_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5s_bifpn_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5s_ca_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5s_ca_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5s_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5s_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5s_ghost_bifpn2_ca_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5s_ghost_bifpn2_ca_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5s_ghost_bifpn_ca_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5s_ghost_bifpn_ca_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5s_ghost_ca_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5s_ghost_ca_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5s_ghost_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5s_ghost_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5x_bifpn_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5x_bifpn_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5x_ca_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5x_ca_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5x_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5x_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5x_ghost_bifpn_ca_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5x_ghost_bifpn_ca_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5x_ghost_ca_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5x_ghost_ca_dd.yaml -------------------------------------------------------------------------------- /models/abnormal_driving/yolov5x_ghost_dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/abnormal_driving/yolov5x_ghost_dd.yaml -------------------------------------------------------------------------------- /models/bishe_voc/yolov5l_ghost_bifpn_ca_voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/bishe_voc/yolov5l_ghost_bifpn_ca_voc.yaml -------------------------------------------------------------------------------- /models/bishe_voc/yolov5l_voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/bishe_voc/yolov5l_voc.yaml -------------------------------------------------------------------------------- /models/bishe_voc/yolov5m_ghost_bifpn_ca_voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/bishe_voc/yolov5m_ghost_bifpn_ca_voc.yaml -------------------------------------------------------------------------------- /models/bishe_voc/yolov5m_voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/bishe_voc/yolov5m_voc.yaml -------------------------------------------------------------------------------- /models/bishe_voc/yolov5n_ghost_bifpn_ca_voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/bishe_voc/yolov5n_ghost_bifpn_ca_voc.yaml -------------------------------------------------------------------------------- /models/bishe_voc/yolov5n_voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/bishe_voc/yolov5n_voc.yaml -------------------------------------------------------------------------------- /models/bishe_voc/yolov5s_ca_voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/bishe_voc/yolov5s_ca_voc.yaml -------------------------------------------------------------------------------- /models/bishe_voc/yolov5s_ghost_bifpn_ca_voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/bishe_voc/yolov5s_ghost_bifpn_ca_voc.yaml -------------------------------------------------------------------------------- /models/bishe_voc/yolov5s_ghost_bifpn_voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/bishe_voc/yolov5s_ghost_bifpn_voc.yaml -------------------------------------------------------------------------------- /models/bishe_voc/yolov5s_ghost_voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/bishe_voc/yolov5s_ghost_voc.yaml -------------------------------------------------------------------------------- /models/bishe_voc/yolov5s_voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/bishe_voc/yolov5s_voc.yaml -------------------------------------------------------------------------------- /models/bishe_voc/yolov5x_ghost_bifpn_ca_voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/bishe_voc/yolov5x_ghost_bifpn_ca_voc.yaml -------------------------------------------------------------------------------- /models/bishe_voc/yolov5x_voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/bishe_voc/yolov5x_voc.yaml -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/common.py -------------------------------------------------------------------------------- /models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/experimental.py -------------------------------------------------------------------------------- /models/hub/anchors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/anchors.yaml -------------------------------------------------------------------------------- /models/hub/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov3-spp.yaml -------------------------------------------------------------------------------- /models/hub/yolov3-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov3-tiny.yaml -------------------------------------------------------------------------------- /models/hub/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov3.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-bifpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov5-bifpn.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov5-fpn.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov5-p2.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov5-p34.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov5-p6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov5-p7.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-panet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov5-panet.yaml -------------------------------------------------------------------------------- /models/hub/yolov5l6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov5l6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5m6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov5m6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5n6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov5n6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s-ghost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov5s-ghost.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s-transformer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/hub/yolov5s-transformer.yaml -------------------------------------------------------------------------------- /models/tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/tf.py -------------------------------------------------------------------------------- /models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolo.py -------------------------------------------------------------------------------- /models/yolov5l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5l.yaml -------------------------------------------------------------------------------- /models/yolov5m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5m.yaml -------------------------------------------------------------------------------- /models/yolov5n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5n.yaml -------------------------------------------------------------------------------- /models/yolov5s-bifpn-new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-bifpn-new.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-bifpn-ca-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-bifpn-ca-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-bifpn-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-bifpn-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-bifpn_new-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-bifpn_new-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-ca-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-ca-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-cbam-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-cbam-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-ghostbottleneck-ca-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-ghostbottleneck-ca-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-ghostconv-bifpn-ca-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-ghostconv-bifpn-ca-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-ghostconv-bifpn1-ca-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-ghostconv-bifpn1-ca-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-ghostconv-bifpn4-ca-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-ghostconv-bifpn4-ca-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-ghostconv-bifpn_new-ca-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-ghostconv-bifpn_new-ca-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-ghostconv-bifpn_new-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-ghostconv-bifpn_new-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-ghostconv-ca-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-ghostconv-ca-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-ghostconv-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-ghostconv-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-ghostnet-bifpn-ca-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-ghostnet-bifpn-ca-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-ghostnet-bifpn-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-ghostnet-bifpn-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-mobilenet-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-mobilenet-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-p2-p5-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-p2-p5-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-shufflenet-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-shufflenet-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5s-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5s-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5x-ghostconv-bifpn_new-ca-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5x-ghostconv-bifpn_new-ca-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s-voc/yolov5x-voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s-voc/yolov5x-voc.yaml -------------------------------------------------------------------------------- /models/yolov5s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s.yaml -------------------------------------------------------------------------------- /models/yolov5s6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5s6.yaml -------------------------------------------------------------------------------- /models/yolov5x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5x.yaml -------------------------------------------------------------------------------- /models/yolov5x6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/models/yolov5x6.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/setup.cfg -------------------------------------------------------------------------------- /test/activation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/activation_test.py -------------------------------------------------------------------------------- /test/data_augment_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/data_augment_test.py -------------------------------------------------------------------------------- /test/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/demo.py -------------------------------------------------------------------------------- /test/focus_vs_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/focus_vs_conv.py -------------------------------------------------------------------------------- /test/gpu_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/gpu_memory.py -------------------------------------------------------------------------------- /test/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/images/1.jpg -------------------------------------------------------------------------------- /test/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/images/2.jpg -------------------------------------------------------------------------------- /test/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/images/3.jpg -------------------------------------------------------------------------------- /test/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/images/4.jpg -------------------------------------------------------------------------------- /test/labels/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/labels/1.txt -------------------------------------------------------------------------------- /test/labels/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/labels/2.txt -------------------------------------------------------------------------------- /test/labels/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/labels/3.txt -------------------------------------------------------------------------------- /test/labels/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/labels/4.txt -------------------------------------------------------------------------------- /test/model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/model_test.py -------------------------------------------------------------------------------- /test/outputs/cutmix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/cutmix.jpg -------------------------------------------------------------------------------- /test/outputs/cutout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/cutout.jpg -------------------------------------------------------------------------------- /test/outputs/fliplr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/fliplr.jpg -------------------------------------------------------------------------------- /test/outputs/flipud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/flipud.jpg -------------------------------------------------------------------------------- /test/outputs/hsv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/hsv.jpg -------------------------------------------------------------------------------- /test/outputs/mixup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/mixup.jpg -------------------------------------------------------------------------------- /test/outputs/mixup_origin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/mixup_origin.jpg -------------------------------------------------------------------------------- /test/outputs/mosaic_with_label.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/mosaic_with_label.jpg -------------------------------------------------------------------------------- /test/outputs/mosaic_without_label.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/mosaic_without_label.jpg -------------------------------------------------------------------------------- /test/outputs/perspective.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/perspective.jpg -------------------------------------------------------------------------------- /test/outputs/rotation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/rotation.jpg -------------------------------------------------------------------------------- /test/outputs/scale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/scale.jpg -------------------------------------------------------------------------------- /test/outputs/shear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/shear.jpg -------------------------------------------------------------------------------- /test/outputs/translation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/outputs/translation.jpg -------------------------------------------------------------------------------- /test/param_metric_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/param_metric_test.py -------------------------------------------------------------------------------- /test/spp_vs_sppf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/spp_vs_sppf.py -------------------------------------------------------------------------------- /test/train_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/test/train_test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/train.py -------------------------------------------------------------------------------- /tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/tutorial.ipynb -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/activations.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__pycache__/activations.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__pycache__/augmentations.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autoanchor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__pycache__/autoanchor.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autobatch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__pycache__/autobatch.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/callbacks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__pycache__/callbacks.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/datasets.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__pycache__/datasets.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/downloads.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__pycache__/downloads.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/general.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__pycache__/general.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__pycache__/loss.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/plots.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__pycache__/plots.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/__pycache__/torch_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/activations.py -------------------------------------------------------------------------------- /utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/augmentations.py -------------------------------------------------------------------------------- /utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/autoanchor.py -------------------------------------------------------------------------------- /utils/autobatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/autobatch.py -------------------------------------------------------------------------------- /utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/aws/mime.sh -------------------------------------------------------------------------------- /utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/aws/resume.py -------------------------------------------------------------------------------- /utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/aws/userdata.sh -------------------------------------------------------------------------------- /utils/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/benchmarks.py -------------------------------------------------------------------------------- /utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/callbacks.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/downloads.py -------------------------------------------------------------------------------- /utils/flask_rest_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/flask_rest_api/README.md -------------------------------------------------------------------------------- /utils/flask_rest_api/example_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/flask_rest_api/example_request.py -------------------------------------------------------------------------------- /utils/flask_rest_api/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/flask_rest_api/restapi.py -------------------------------------------------------------------------------- /utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/general.py -------------------------------------------------------------------------------- /utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /utils/loggers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/loggers/__init__.py -------------------------------------------------------------------------------- /utils/loggers/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/loggers/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/loggers/wandb/README.md -------------------------------------------------------------------------------- /utils/loggers/wandb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/loggers/wandb/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/loggers/wandb/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/__pycache__/wandb_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/loggers/wandb/__pycache__/wandb_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/loggers/wandb/log_dataset.py -------------------------------------------------------------------------------- /utils/loggers/wandb/sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/loggers/wandb/sweep.py -------------------------------------------------------------------------------- /utils/loggers/wandb/sweep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/loggers/wandb/sweep.yaml -------------------------------------------------------------------------------- /utils/loggers/wandb/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/loggers/wandb/wandb_utils.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/plots.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/utils/torch_utils.py -------------------------------------------------------------------------------- /val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/val.py -------------------------------------------------------------------------------- /xml2txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/xml2txt.py -------------------------------------------------------------------------------- /改进算法整体框架.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaolong-RRL/YOLOv5-Abnormal-Driving/HEAD/改进算法整体框架.png --------------------------------------------------------------------------------