├── Dockerfile ├── README.md ├── data ├── coco.yaml ├── coco128.yaml ├── hyp.finetune.yaml ├── hyp.scratch.yaml ├── scripts │ ├── get_coco.sh │ └── get_voc.sh └── voc.yaml ├── detect_camera.py ├── detect_photo.py ├── hubconf.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── common.cpython-37.pyc │ ├── common.cpython-38.pyc │ ├── experimental.cpython-37.pyc │ ├── experimental.cpython-38.pyc │ ├── yolo.cpython-37.pyc │ └── yolo.cpython-38.pyc ├── common.py ├── experimental.py ├── export.py ├── hub │ ├── anchors.yaml │ ├── yolov3-spp.yaml │ ├── yolov3-tiny.yaml │ ├── yolov3.yaml │ ├── yolov5-fpn.yaml │ ├── yolov5-p2.yaml │ ├── yolov5-p6.yaml │ ├── yolov5-p7.yaml │ ├── yolov5-panet.yaml │ ├── yolov5l6.yaml │ ├── yolov5m6.yaml │ ├── yolov5s6.yaml │ └── yolov5x6.yaml ├── yolo.py ├── yolov5l.yaml ├── yolov5m.yaml ├── yolov5s.yaml └── yolov5x.yaml ├── screenshot ├── a530.jpg ├── abc (33).jpg ├── def (7).jpg ├── fire (104).jpg └── qrcode.png ├── utils ├── __init__.py ├── activations.py ├── autoanchor.py ├── datasets.py ├── general.py ├── google_utils.py ├── loss.py ├── metrics.py ├── plots.py ├── torch_utils.py └── wandb_logging │ ├── __init__.py │ ├── log_dataset.py │ └── wandb_utils.py └── weights └── download_weights.sh /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/README.md -------------------------------------------------------------------------------- /data/coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/data/coco.yaml -------------------------------------------------------------------------------- /data/coco128.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/data/coco128.yaml -------------------------------------------------------------------------------- /data/hyp.finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/data/hyp.finetune.yaml -------------------------------------------------------------------------------- /data/hyp.scratch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/data/hyp.scratch.yaml -------------------------------------------------------------------------------- /data/scripts/get_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/data/scripts/get_coco.sh -------------------------------------------------------------------------------- /data/scripts/get_voc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/data/scripts/get_voc.sh -------------------------------------------------------------------------------- /data/voc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/data/voc.yaml -------------------------------------------------------------------------------- /detect_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/detect_camera.py -------------------------------------------------------------------------------- /detect_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/detect_photo.py -------------------------------------------------------------------------------- /hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/hubconf.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/common.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/__pycache__/common.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/__pycache__/common.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/experimental.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/__pycache__/experimental.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/experimental.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/__pycache__/experimental.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/yolo.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/__pycache__/yolo.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/yolo.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/__pycache__/yolo.cpython-38.pyc -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/common.py -------------------------------------------------------------------------------- /models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/experimental.py -------------------------------------------------------------------------------- /models/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/export.py -------------------------------------------------------------------------------- /models/hub/anchors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/hub/anchors.yaml -------------------------------------------------------------------------------- /models/hub/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/hub/yolov3-spp.yaml -------------------------------------------------------------------------------- /models/hub/yolov3-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/hub/yolov3-tiny.yaml -------------------------------------------------------------------------------- /models/hub/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/hub/yolov3.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/hub/yolov5-fpn.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/hub/yolov5-p2.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/hub/yolov5-p6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-p7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/hub/yolov5-p7.yaml -------------------------------------------------------------------------------- /models/hub/yolov5-panet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/hub/yolov5-panet.yaml -------------------------------------------------------------------------------- /models/hub/yolov5l6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/hub/yolov5l6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5m6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/hub/yolov5m6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5s6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/hub/yolov5s6.yaml -------------------------------------------------------------------------------- /models/hub/yolov5x6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/hub/yolov5x6.yaml -------------------------------------------------------------------------------- /models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/yolo.py -------------------------------------------------------------------------------- /models/yolov5l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/yolov5l.yaml -------------------------------------------------------------------------------- /models/yolov5m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/yolov5m.yaml -------------------------------------------------------------------------------- /models/yolov5s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/yolov5s.yaml -------------------------------------------------------------------------------- /models/yolov5x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/models/yolov5x.yaml -------------------------------------------------------------------------------- /screenshot/a530.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/screenshot/a530.jpg -------------------------------------------------------------------------------- /screenshot/abc (33).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/screenshot/abc (33).jpg -------------------------------------------------------------------------------- /screenshot/def (7).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/screenshot/def (7).jpg -------------------------------------------------------------------------------- /screenshot/fire (104).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/screenshot/fire (104).jpg -------------------------------------------------------------------------------- /screenshot/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/screenshot/qrcode.png -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/utils/activations.py -------------------------------------------------------------------------------- /utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/utils/autoanchor.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/utils/general.py -------------------------------------------------------------------------------- /utils/google_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/utils/google_utils.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/utils/plots.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/utils/torch_utils.py -------------------------------------------------------------------------------- /utils/wandb_logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/wandb_logging/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/utils/wandb_logging/log_dataset.py -------------------------------------------------------------------------------- /utils/wandb_logging/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/utils/wandb_logging/wandb_utils.py -------------------------------------------------------------------------------- /weights/download_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-fire-flame-smoke-recognition-and-detection/HEAD/weights/download_weights.sh --------------------------------------------------------------------------------