├── README.md ├── benchmarks.py ├── classify ├── predict.py ├── train.py ├── tutorial.ipynb └── val.py ├── data ├── Argoverse.yaml ├── GlobalWheat2020.yaml ├── ImageNet.yaml ├── ImageNet10.yaml ├── ImageNet100.yaml ├── ImageNet1000.yaml ├── Objects365.yaml ├── SKU-110K.yaml ├── VOC.yaml ├── VisDrone.yaml ├── aaa_truongnv_person_hecdaahq.yaml ├── aaa_truongnv_plane_car_bogaldql.yaml ├── coco.yaml ├── coco128-seg.yaml ├── coco128.yaml ├── hyps │ ├── hyp.Objects365.yaml │ ├── hyp.VOC.yaml │ ├── hyp.no-augmentation.yaml │ ├── hyp.scratch-high.yaml │ ├── hyp.scratch-low.yaml │ └── hyp.scratch-med.yaml ├── images │ ├── 000000001144.jpg │ ├── bus.jpg │ └── zidane.jpg ├── scripts │ ├── download_weights.sh │ ├── get_coco.sh │ ├── get_coco128.sh │ ├── get_imagenet.sh │ ├── get_imagenet10.sh │ ├── get_imagenet100.sh │ └── get_imagenet1000.sh ├── xView.yaml └── yaml_aicandy_obj_aegduuyx.yaml ├── detect.py ├── export.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-38.pyc │ ├── common.cpython-310.pyc │ ├── common.cpython-38.pyc │ ├── experimental.cpython-310.pyc │ ├── experimental.cpython-38.pyc │ ├── tf.cpython-310.pyc │ ├── yolo.cpython-310.pyc │ └── yolo.cpython-38.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-LeakyReLU.yaml │ ├── yolov5s-ghost.yaml │ ├── yolov5s-transformer.yaml │ ├── yolov5s6.yaml │ └── yolov5x6.yaml ├── segment │ ├── yolov5l-seg.yaml │ ├── yolov5m-seg.yaml │ ├── yolov5n-seg.yaml │ ├── yolov5s-seg.yaml │ └── yolov5x-seg.yaml ├── tf.py ├── yolo.py ├── yolov5l.yaml ├── yolov5m.yaml ├── yolov5n.yaml ├── yolov5s.yaml └── yolov5x.yaml ├── segment ├── predict.py ├── train.py ├── tutorial.ipynb └── val.py ├── train.py ├── utils ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-38.pyc │ ├── activations.cpython-310.pyc │ ├── augmentations.cpython-310.pyc │ ├── augmentations.cpython-38.pyc │ ├── autoanchor.cpython-310.pyc │ ├── autoanchor.cpython-38.pyc │ ├── autobatch.cpython-38.pyc │ ├── callbacks.cpython-38.pyc │ ├── dataloaders.cpython-310.pyc │ ├── dataloaders.cpython-38.pyc │ ├── downloads.cpython-310.pyc │ ├── downloads.cpython-38.pyc │ ├── general.cpython-310.pyc │ ├── general.cpython-38.pyc │ ├── loss.cpython-38.pyc │ ├── metrics.cpython-310.pyc │ ├── metrics.cpython-38.pyc │ ├── plots.cpython-310.pyc │ ├── plots.cpython-38.pyc │ ├── torch_utils.cpython-310.pyc │ └── torch_utils.cpython-38.pyc ├── activations.py ├── augmentations.py ├── autoanchor.py ├── autobatch.py ├── aws │ ├── __init__.py │ ├── mime.sh │ ├── resume.py │ └── userdata.sh ├── callbacks.py ├── dataloaders.py ├── docker │ ├── Dockerfile │ ├── Dockerfile-arm64 │ └── Dockerfile-cpu ├── 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 │ ├── clearml │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── clearml_utils.cpython-38.pyc │ │ ├── clearml_utils.py │ │ └── hpo.py │ ├── comet │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── comet_utils.cpython-38.pyc │ │ ├── comet_utils.py │ │ ├── hpo.py │ │ └── optimizer_config.json │ └── wandb │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── wandb_utils.cpython-38.pyc │ │ └── wandb_utils.py ├── loss.py ├── metrics.py ├── plots.py ├── segment │ ├── __init__.py │ ├── augmentations.py │ ├── dataloaders.py │ ├── general.py │ ├── loss.py │ ├── metrics.py │ └── plots.py ├── torch_utils.py └── triton.py └── val.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/benchmarks.py -------------------------------------------------------------------------------- /classify/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/classify/predict.py -------------------------------------------------------------------------------- /classify/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/classify/train.py -------------------------------------------------------------------------------- /classify/tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/classify/tutorial.ipynb -------------------------------------------------------------------------------- /classify/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/classify/val.py -------------------------------------------------------------------------------- /data/Argoverse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/Argoverse.yaml -------------------------------------------------------------------------------- /data/GlobalWheat2020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/GlobalWheat2020.yaml -------------------------------------------------------------------------------- /data/ImageNet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/ImageNet.yaml -------------------------------------------------------------------------------- /data/ImageNet10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/ImageNet10.yaml -------------------------------------------------------------------------------- /data/ImageNet100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/ImageNet100.yaml -------------------------------------------------------------------------------- /data/ImageNet1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/ImageNet1000.yaml -------------------------------------------------------------------------------- /data/Objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/Objects365.yaml -------------------------------------------------------------------------------- /data/SKU-110K.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/SKU-110K.yaml -------------------------------------------------------------------------------- /data/VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/VOC.yaml -------------------------------------------------------------------------------- /data/VisDrone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/VisDrone.yaml -------------------------------------------------------------------------------- /data/aaa_truongnv_person_hecdaahq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/aaa_truongnv_person_hecdaahq.yaml -------------------------------------------------------------------------------- /data/aaa_truongnv_plane_car_bogaldql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/aaa_truongnv_plane_car_bogaldql.yaml -------------------------------------------------------------------------------- /data/coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/coco.yaml -------------------------------------------------------------------------------- /data/coco128-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/coco128-seg.yaml -------------------------------------------------------------------------------- /data/coco128.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/coco128.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.Objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/hyps/hyp.Objects365.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/hyps/hyp.VOC.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.no-augmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/hyps/hyp.no-augmentation.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.scratch-high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/hyps/hyp.scratch-high.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.scratch-low.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/hyps/hyp.scratch-low.yaml -------------------------------------------------------------------------------- /data/hyps/hyp.scratch-med.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/hyps/hyp.scratch-med.yaml -------------------------------------------------------------------------------- /data/images/000000001144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/images/000000001144.jpg -------------------------------------------------------------------------------- /data/images/bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/images/bus.jpg -------------------------------------------------------------------------------- /data/images/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/images/zidane.jpg -------------------------------------------------------------------------------- /data/scripts/download_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/scripts/download_weights.sh -------------------------------------------------------------------------------- /data/scripts/get_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/scripts/get_coco.sh -------------------------------------------------------------------------------- /data/scripts/get_coco128.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/scripts/get_coco128.sh -------------------------------------------------------------------------------- /data/scripts/get_imagenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/scripts/get_imagenet.sh -------------------------------------------------------------------------------- /data/scripts/get_imagenet10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/scripts/get_imagenet10.sh -------------------------------------------------------------------------------- /data/scripts/get_imagenet100.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/scripts/get_imagenet100.sh -------------------------------------------------------------------------------- /data/scripts/get_imagenet1000.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/scripts/get_imagenet1000.sh -------------------------------------------------------------------------------- /data/xView.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/xView.yaml -------------------------------------------------------------------------------- /data/yaml_aicandy_obj_aegduuyx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/data/yaml_aicandy_obj_aegduuyx.yaml -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/detect.py -------------------------------------------------------------------------------- /export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/export.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/common.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/__pycache__/common.cpython-310.pyc -------------------------------------------------------------------------------- /models/__pycache__/common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/__pycache__/common.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/experimental.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/__pycache__/experimental.cpython-310.pyc -------------------------------------------------------------------------------- /models/__pycache__/experimental.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/__pycache__/experimental.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/tf.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/__pycache__/tf.cpython-310.pyc -------------------------------------------------------------------------------- /models/__pycache__/yolo.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/__pycache__/yolo.cpython-310.pyc -------------------------------------------------------------------------------- /models/__pycache__/yolo.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/__pycache__/yolo.cpython-38.pyc -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/common.py -------------------------------------------------------------------------------- /models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/experimental.py -------------------------------------------------------------------------------- /models/hub/anchors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/anchors.yaml -------------------------------------------------------------------------------- /models/hub/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov3-spp.yaml -------------------------------------------------------------------------------- /models/hub/yolov3-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov3-tiny.yaml -------------------------------------------------------------------------------- /models/hub/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov3.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-bifpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5-bifpn.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5-fpn.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5-p2.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5-p34.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5-p6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5-p7.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-panet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5-panet.yaml -------------------------------------------------------------------------------- /models/hub/yolov5l6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5l6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5m6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5m6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5n6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5n6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s-LeakyReLU.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5s-LeakyReLU.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s-ghost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5s-ghost.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s-transformer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5s-transformer.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5s6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5x6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/hub/yolov5x6.yaml -------------------------------------------------------------------------------- /models/segment/yolov5l-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/segment/yolov5l-seg.yaml -------------------------------------------------------------------------------- /models/segment/yolov5m-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/segment/yolov5m-seg.yaml -------------------------------------------------------------------------------- /models/segment/yolov5n-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/segment/yolov5n-seg.yaml -------------------------------------------------------------------------------- /models/segment/yolov5s-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/segment/yolov5s-seg.yaml -------------------------------------------------------------------------------- /models/segment/yolov5x-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/segment/yolov5x-seg.yaml -------------------------------------------------------------------------------- /models/tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/tf.py -------------------------------------------------------------------------------- /models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/yolo.py -------------------------------------------------------------------------------- /models/yolov5l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/yolov5l.yaml -------------------------------------------------------------------------------- /models/yolov5m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/yolov5m.yaml -------------------------------------------------------------------------------- /models/yolov5n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/yolov5n.yaml -------------------------------------------------------------------------------- /models/yolov5s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/yolov5s.yaml -------------------------------------------------------------------------------- /models/yolov5x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/models/yolov5x.yaml -------------------------------------------------------------------------------- /segment/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/segment/predict.py -------------------------------------------------------------------------------- /segment/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/segment/train.py -------------------------------------------------------------------------------- /segment/tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/segment/tutorial.ipynb -------------------------------------------------------------------------------- /segment/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/segment/val.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/activations.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/activations.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/augmentations.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/augmentations.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autoanchor.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/autoanchor.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autoanchor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/autoanchor.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autobatch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/autobatch.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/callbacks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/callbacks.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dataloaders.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/dataloaders.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dataloaders.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/dataloaders.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/downloads.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/downloads.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/downloads.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/downloads.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/general.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/general.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/general.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/general.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/loss.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/metrics.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/metrics.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/plots.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/plots.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/plots.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/plots.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/torch_utils.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/__pycache__/torch_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/activations.py -------------------------------------------------------------------------------- /utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/augmentations.py -------------------------------------------------------------------------------- /utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/autoanchor.py -------------------------------------------------------------------------------- /utils/autobatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/autobatch.py -------------------------------------------------------------------------------- /utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/aws/mime.sh -------------------------------------------------------------------------------- /utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/aws/resume.py -------------------------------------------------------------------------------- /utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/aws/userdata.sh -------------------------------------------------------------------------------- /utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/callbacks.py -------------------------------------------------------------------------------- /utils/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/dataloaders.py -------------------------------------------------------------------------------- /utils/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/docker/Dockerfile -------------------------------------------------------------------------------- /utils/docker/Dockerfile-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/docker/Dockerfile-arm64 -------------------------------------------------------------------------------- /utils/docker/Dockerfile-cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/docker/Dockerfile-cpu -------------------------------------------------------------------------------- /utils/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/downloads.py -------------------------------------------------------------------------------- /utils/flask_rest_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/flask_rest_api/README.md -------------------------------------------------------------------------------- /utils/flask_rest_api/example_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/flask_rest_api/example_request.py -------------------------------------------------------------------------------- /utils/flask_rest_api/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/flask_rest_api/restapi.py -------------------------------------------------------------------------------- /utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/general.py -------------------------------------------------------------------------------- /utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /utils/loggers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/__init__.py -------------------------------------------------------------------------------- /utils/loggers/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/clearml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/clearml/README.md -------------------------------------------------------------------------------- /utils/loggers/clearml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/loggers/clearml/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/clearml/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/clearml/__pycache__/clearml_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/clearml/__pycache__/clearml_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/clearml/clearml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/clearml/clearml_utils.py -------------------------------------------------------------------------------- /utils/loggers/clearml/hpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/clearml/hpo.py -------------------------------------------------------------------------------- /utils/loggers/comet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/comet/README.md -------------------------------------------------------------------------------- /utils/loggers/comet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/comet/__init__.py -------------------------------------------------------------------------------- /utils/loggers/comet/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/comet/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/comet/__pycache__/comet_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/comet/__pycache__/comet_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/comet/comet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/comet/comet_utils.py -------------------------------------------------------------------------------- /utils/loggers/comet/hpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/comet/hpo.py -------------------------------------------------------------------------------- /utils/loggers/comet/optimizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/comet/optimizer_config.json -------------------------------------------------------------------------------- /utils/loggers/wandb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/loggers/wandb/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/wandb/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/__pycache__/wandb_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/wandb/__pycache__/wandb_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loggers/wandb/wandb_utils.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/plots.py -------------------------------------------------------------------------------- /utils/segment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/segment/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/segment/augmentations.py -------------------------------------------------------------------------------- /utils/segment/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/segment/dataloaders.py -------------------------------------------------------------------------------- /utils/segment/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/segment/general.py -------------------------------------------------------------------------------- /utils/segment/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/segment/loss.py -------------------------------------------------------------------------------- /utils/segment/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/segment/metrics.py -------------------------------------------------------------------------------- /utils/segment/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/segment/plots.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/torch_utils.py -------------------------------------------------------------------------------- /utils/triton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/utils/triton.py -------------------------------------------------------------------------------- /val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TruongNV-hut/AI_U_P_Cl_YOLO5_ObjectDetection_usgmsdsh/HEAD/val.py --------------------------------------------------------------------------------