├── Arial.ttf ├── DataAugForObjectDetection ├── .idea │ ├── .gitignore │ ├── DataAugForObjectDetection.iml │ ├── deployment.xml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── sonarlint │ │ └── issuestore │ │ ├── 8 │ │ └── e │ │ │ └── 8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d │ │ ├── a │ │ └── e │ │ │ └── ae632172bc990eebfe7067076ac0c600ba9e0cee │ │ ├── f │ │ └── d │ │ │ └── fd0c6f6bbb38635f9fa068075e7538880e886b91 │ │ └── index.pb ├── DataAugmentForObejctDetection.py ├── DataAugmentForObejctDetection_pool.py ├── __pycache__ │ └── xml_helper.cpython-37.pyc └── xml_helper.py ├── Dockerfile ├── README.md ├── auto_label.py ├── data ├── Argoverse.yaml ├── GlobalWheat2020.yaml ├── Objects365.yaml ├── SKU-110K.yaml ├── VOC.yaml ├── VisDrone.yaml ├── coco.yaml ├── coco128.yaml ├── custom_data.yaml ├── hyps │ ├── hyp.finetune.yaml │ ├── hyp.finetune_objects365.yaml │ ├── hyp.scratch-high.yaml │ ├── hyp.scratch-low.yaml │ ├── hyp.scratch-med.yaml │ └── hyp.scratch.yaml ├── images │ ├── bus.jpg │ └── zidane.jpg ├── scripts │ ├── download_weights.sh │ ├── get_coco.sh │ └── get_coco128.sh └── xView.yaml ├── detect_image_only.py ├── export.py ├── gen_anchors ├── __pycache__ │ └── kmeans.cpython-37.pyc ├── anchors.txt ├── calculate_anchors.py └── kmeans.py ├── hubconf.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── common.cpython-37.pyc │ ├── experimental.cpython-37.pyc │ └── yolo.cpython-37.pyc ├── 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 │ ├── yolov5s6.yaml │ └── yolov5x6.yaml ├── tf.py ├── yolo.py ├── yolov5l.yaml ├── yolov5m.yaml ├── yolov5n.yaml ├── yolov5s.yaml ├── yolov5s_c.yaml ├── yolov5x.yaml └── yolov5x_c.yaml ├── onnx_predict.py ├── predict.py ├── requirements.txt ├── runs ├── .DS_Store └── detect │ ├── .DS_Store │ └── exp │ ├── 348e6d2c1a4b05bbe803453744e56c7e.jpeg │ ├── 395edfd78b51bfcc2bfde6386a860589.jpeg │ ├── 51a3fdf4e9e1593585b450a20769d8ef.jpeg │ └── 5f77238d9f6fbb676a2fcd3ebee3dbad.jpeg ├── setup.cfg ├── train.py ├── utils ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── activations.cpython-37.pyc │ ├── augmentations.cpython-37.pyc │ ├── autoanchor.cpython-37.pyc │ ├── autobatch.cpython-37.pyc │ ├── callbacks.cpython-37.pyc │ ├── datasets.cpython-37.pyc │ ├── downloads.cpython-37.pyc │ ├── general.cpython-37.pyc │ ├── loss.cpython-37.pyc │ ├── metrics.cpython-37.pyc │ ├── plots.cpython-37.pyc │ └── torch_utils.cpython-37.pyc ├── activations.py ├── augmentations.py ├── autoanchor.py ├── autobatch.py ├── aws │ ├── __init__.py │ ├── mime.sh │ ├── resume.py │ └── userdata.sh ├── 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-37.pyc │ └── wandb │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ └── wandb_utils.cpython-37.pyc │ │ ├── log_dataset.py │ │ ├── sweep.py │ │ ├── sweep.yaml │ │ └── wandb_utils.py ├── loss.py ├── metrics.py ├── plots.py └── torch_utils.py ├── val.py ├── voc_to_coco.py ├── yolo5_inference ├── .idea │ ├── .gitignore │ ├── deployment.xml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── sonarlint │ │ └── issuestore │ │ │ └── index.pb │ └── yolo5.iml ├── Arial.ttf ├── config │ └── custom_data.yaml ├── detect_image_only.py ├── models │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── common.cpython-37.pyc │ │ ├── experimental.cpython-37.pyc │ │ └── yolo.cpython-37.pyc │ ├── common.py │ ├── experimental.py │ └── yolo.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── augmentations.cpython-37.pyc │ ├── autoanchor.cpython-37.pyc │ ├── autobatch.cpython-37.pyc │ ├── callbacks.cpython-37.pyc │ ├── datasets.cpython-37.pyc │ ├── downloads.cpython-37.pyc │ ├── general.cpython-37.pyc │ ├── loss.cpython-37.pyc │ ├── metrics.cpython-37.pyc │ ├── plots.cpython-37.pyc │ └── torch_utils.cpython-37.pyc │ ├── activations.py │ ├── augmentations.py │ ├── autoanchor.py │ ├── datasets.py │ ├── downloads.py │ ├── general.py │ ├── metrics.py │ ├── plots.py │ └── torch_utils.py └── 机器学习算法AI大数据技术_datanlp.jpg /Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/Arial.ttf -------------------------------------------------------------------------------- /DataAugForObjectDetection/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/DataAugForObjectDetection/.idea/.gitignore -------------------------------------------------------------------------------- /DataAugForObjectDetection/.idea/DataAugForObjectDetection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/DataAugForObjectDetection/.idea/DataAugForObjectDetection.iml -------------------------------------------------------------------------------- /DataAugForObjectDetection/.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/DataAugForObjectDetection/.idea/deployment.xml -------------------------------------------------------------------------------- /DataAugForObjectDetection/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/DataAugForObjectDetection/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /DataAugForObjectDetection/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/DataAugForObjectDetection/.idea/misc.xml -------------------------------------------------------------------------------- /DataAugForObjectDetection/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/DataAugForObjectDetection/.idea/modules.xml -------------------------------------------------------------------------------- /DataAugForObjectDetection/.idea/sonarlint/issuestore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataAugForObjectDetection/.idea/sonarlint/issuestore/a/e/ae632172bc990eebfe7067076ac0c600ba9e0cee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/DataAugForObjectDetection/.idea/sonarlint/issuestore/a/e/ae632172bc990eebfe7067076ac0c600ba9e0cee -------------------------------------------------------------------------------- /DataAugForObjectDetection/.idea/sonarlint/issuestore/f/d/fd0c6f6bbb38635f9fa068075e7538880e886b91: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/DataAugForObjectDetection/.idea/sonarlint/issuestore/f/d/fd0c6f6bbb38635f9fa068075e7538880e886b91 -------------------------------------------------------------------------------- /DataAugForObjectDetection/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/DataAugForObjectDetection/.idea/sonarlint/issuestore/index.pb -------------------------------------------------------------------------------- /DataAugForObjectDetection/DataAugmentForObejctDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/DataAugForObjectDetection/DataAugmentForObejctDetection.py -------------------------------------------------------------------------------- /DataAugForObjectDetection/DataAugmentForObejctDetection_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/DataAugForObjectDetection/DataAugmentForObejctDetection_pool.py -------------------------------------------------------------------------------- /DataAugForObjectDetection/__pycache__/xml_helper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/DataAugForObjectDetection/__pycache__/xml_helper.cpython-37.pyc -------------------------------------------------------------------------------- /DataAugForObjectDetection/xml_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/DataAugForObjectDetection/xml_helper.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/README.md -------------------------------------------------------------------------------- /auto_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/auto_label.py -------------------------------------------------------------------------------- /data/Argoverse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/Argoverse.yaml -------------------------------------------------------------------------------- /data/GlobalWheat2020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/GlobalWheat2020.yaml -------------------------------------------------------------------------------- /data/Objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/Objects365.yaml -------------------------------------------------------------------------------- /data/SKU-110K.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/SKU-110K.yaml -------------------------------------------------------------------------------- /data/VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/VOC.yaml -------------------------------------------------------------------------------- /data/VisDrone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/VisDrone.yaml -------------------------------------------------------------------------------- /data/coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/coco.yaml -------------------------------------------------------------------------------- /data/coco128.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/coco128.yaml -------------------------------------------------------------------------------- /data/custom_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/custom_data.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/hyps/hyp.finetune.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.finetune_objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/hyps/hyp.finetune_objects365.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.scratch-high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/hyps/hyp.scratch-high.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.scratch-low.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/hyps/hyp.scratch-low.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.scratch-med.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/hyps/hyp.scratch-med.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.scratch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/hyps/hyp.scratch.yaml -------------------------------------------------------------------------------- /data/images/bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/images/bus.jpg -------------------------------------------------------------------------------- /data/images/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/images/zidane.jpg -------------------------------------------------------------------------------- /data/scripts/download_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/scripts/download_weights.sh -------------------------------------------------------------------------------- /data/scripts/get_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/scripts/get_coco.sh -------------------------------------------------------------------------------- /data/scripts/get_coco128.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/scripts/get_coco128.sh -------------------------------------------------------------------------------- /data/xView.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/data/xView.yaml -------------------------------------------------------------------------------- /detect_image_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/detect_image_only.py -------------------------------------------------------------------------------- /export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/export.py -------------------------------------------------------------------------------- /gen_anchors/__pycache__/kmeans.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/gen_anchors/__pycache__/kmeans.cpython-37.pyc -------------------------------------------------------------------------------- /gen_anchors/anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/gen_anchors/anchors.txt -------------------------------------------------------------------------------- /gen_anchors/calculate_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/gen_anchors/calculate_anchors.py -------------------------------------------------------------------------------- /gen_anchors/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/gen_anchors/kmeans.py -------------------------------------------------------------------------------- /hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/hubconf.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/common.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/__pycache__/common.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/experimental.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/__pycache__/experimental.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/yolo.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/__pycache__/yolo.cpython-37.pyc -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/common.py -------------------------------------------------------------------------------- /models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/experimental.py -------------------------------------------------------------------------------- /models/hub/anchors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/anchors.yaml -------------------------------------------------------------------------------- /models/hub/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov3-spp.yaml -------------------------------------------------------------------------------- /models/hub/yolov3-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov3-tiny.yaml -------------------------------------------------------------------------------- /models/hub/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov3.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-bifpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5-bifpn.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5-fpn.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5-p2.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5-p34.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5-p6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5-p7.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-panet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5-panet.yaml -------------------------------------------------------------------------------- /models/hub/yolov5l6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5l6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5m6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5m6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5n6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5n6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s-ghost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5s-ghost.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s-transformer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5s-transformer.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5s6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5x6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/hub/yolov5x6.yaml -------------------------------------------------------------------------------- /models/tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/tf.py -------------------------------------------------------------------------------- /models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/yolo.py -------------------------------------------------------------------------------- /models/yolov5l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/yolov5l.yaml -------------------------------------------------------------------------------- /models/yolov5m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/yolov5m.yaml -------------------------------------------------------------------------------- /models/yolov5n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/yolov5n.yaml -------------------------------------------------------------------------------- /models/yolov5s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/yolov5s.yaml -------------------------------------------------------------------------------- /models/yolov5s_c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/yolov5s_c.yaml -------------------------------------------------------------------------------- /models/yolov5x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/yolov5x.yaml -------------------------------------------------------------------------------- /models/yolov5x_c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/models/yolov5x_c.yaml -------------------------------------------------------------------------------- /onnx_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/onnx_predict.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /runs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/runs/.DS_Store -------------------------------------------------------------------------------- /runs/detect/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/runs/detect/.DS_Store -------------------------------------------------------------------------------- /runs/detect/exp/348e6d2c1a4b05bbe803453744e56c7e.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/runs/detect/exp/348e6d2c1a4b05bbe803453744e56c7e.jpeg -------------------------------------------------------------------------------- /runs/detect/exp/395edfd78b51bfcc2bfde6386a860589.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/runs/detect/exp/395edfd78b51bfcc2bfde6386a860589.jpeg -------------------------------------------------------------------------------- /runs/detect/exp/51a3fdf4e9e1593585b450a20769d8ef.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/runs/detect/exp/51a3fdf4e9e1593585b450a20769d8ef.jpeg -------------------------------------------------------------------------------- /runs/detect/exp/5f77238d9f6fbb676a2fcd3ebee3dbad.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/runs/detect/exp/5f77238d9f6fbb676a2fcd3ebee3dbad.jpeg -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/setup.cfg -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/activations.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__pycache__/activations.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__pycache__/augmentations.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autoanchor.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__pycache__/autoanchor.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autobatch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__pycache__/autobatch.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/callbacks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__pycache__/callbacks.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/datasets.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__pycache__/datasets.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/downloads.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__pycache__/downloads.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/general.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__pycache__/general.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__pycache__/loss.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/metrics.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__pycache__/metrics.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/plots.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__pycache__/plots.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/__pycache__/torch_utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/activations.py -------------------------------------------------------------------------------- /utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/augmentations.py -------------------------------------------------------------------------------- /utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/autoanchor.py -------------------------------------------------------------------------------- /utils/autobatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/autobatch.py -------------------------------------------------------------------------------- /utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/aws/mime.sh -------------------------------------------------------------------------------- /utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/aws/resume.py -------------------------------------------------------------------------------- /utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/aws/userdata.sh -------------------------------------------------------------------------------- /utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/callbacks.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/downloads.py -------------------------------------------------------------------------------- /utils/flask_rest_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/flask_rest_api/README.md -------------------------------------------------------------------------------- /utils/flask_rest_api/example_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/flask_rest_api/example_request.py -------------------------------------------------------------------------------- /utils/flask_rest_api/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/flask_rest_api/restapi.py -------------------------------------------------------------------------------- /utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/general.py -------------------------------------------------------------------------------- /utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /utils/loggers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/loggers/__init__.py -------------------------------------------------------------------------------- /utils/loggers/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/loggers/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/loggers/wandb/README.md -------------------------------------------------------------------------------- /utils/loggers/wandb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/loggers/wandb/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/loggers/wandb/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/__pycache__/wandb_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/loggers/wandb/__pycache__/wandb_utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/loggers/wandb/log_dataset.py -------------------------------------------------------------------------------- /utils/loggers/wandb/sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/loggers/wandb/sweep.py -------------------------------------------------------------------------------- /utils/loggers/wandb/sweep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/loggers/wandb/sweep.yaml -------------------------------------------------------------------------------- /utils/loggers/wandb/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/loggers/wandb/wandb_utils.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/plots.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/utils/torch_utils.py -------------------------------------------------------------------------------- /val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/val.py -------------------------------------------------------------------------------- /voc_to_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/voc_to_coco.py -------------------------------------------------------------------------------- /yolo5_inference/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/.idea/.gitignore -------------------------------------------------------------------------------- /yolo5_inference/.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/.idea/deployment.xml -------------------------------------------------------------------------------- /yolo5_inference/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /yolo5_inference/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/.idea/misc.xml -------------------------------------------------------------------------------- /yolo5_inference/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/.idea/modules.xml -------------------------------------------------------------------------------- /yolo5_inference/.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolo5_inference/.idea/yolo5.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/.idea/yolo5.iml -------------------------------------------------------------------------------- /yolo5_inference/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/Arial.ttf -------------------------------------------------------------------------------- /yolo5_inference/config/custom_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/config/custom_data.yaml -------------------------------------------------------------------------------- /yolo5_inference/detect_image_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/detect_image_only.py -------------------------------------------------------------------------------- /yolo5_inference/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolo5_inference/models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/models/__pycache__/common.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/models/__pycache__/common.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/models/__pycache__/experimental.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/models/__pycache__/experimental.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/models/__pycache__/yolo.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/models/__pycache__/yolo.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/models/common.py -------------------------------------------------------------------------------- /yolo5_inference/models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/models/experimental.py -------------------------------------------------------------------------------- /yolo5_inference/models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/models/yolo.py -------------------------------------------------------------------------------- /yolo5_inference/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/__init__.py -------------------------------------------------------------------------------- /yolo5_inference/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/utils/__pycache__/augmentations.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/__pycache__/augmentations.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/utils/__pycache__/autoanchor.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/__pycache__/autoanchor.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/utils/__pycache__/autobatch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/__pycache__/autobatch.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/utils/__pycache__/callbacks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/__pycache__/callbacks.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/utils/__pycache__/datasets.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/__pycache__/datasets.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/utils/__pycache__/downloads.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/__pycache__/downloads.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/utils/__pycache__/general.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/__pycache__/general.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/utils/__pycache__/loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/__pycache__/loss.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/utils/__pycache__/metrics.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/__pycache__/metrics.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/utils/__pycache__/plots.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/__pycache__/plots.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/utils/__pycache__/torch_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/__pycache__/torch_utils.cpython-37.pyc -------------------------------------------------------------------------------- /yolo5_inference/utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/activations.py -------------------------------------------------------------------------------- /yolo5_inference/utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/augmentations.py -------------------------------------------------------------------------------- /yolo5_inference/utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/autoanchor.py -------------------------------------------------------------------------------- /yolo5_inference/utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/datasets.py -------------------------------------------------------------------------------- /yolo5_inference/utils/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/downloads.py -------------------------------------------------------------------------------- /yolo5_inference/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/general.py -------------------------------------------------------------------------------- /yolo5_inference/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/metrics.py -------------------------------------------------------------------------------- /yolo5_inference/utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/plots.py -------------------------------------------------------------------------------- /yolo5_inference/utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/yolo5_inference/utils/torch_utils.py -------------------------------------------------------------------------------- /机器学习算法AI大数据技术_datanlp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ami66/yolov5_v6.0_object_detection/HEAD/机器学习算法AI大数据技术_datanlp.jpg --------------------------------------------------------------------------------