├── .gitignore ├── README.md ├── __pycache__ ├── config.cpython-310.pyc └── utils.cpython-310.pyc ├── app.py ├── config.py ├── requirements.txt ├── utils.py └── weights └── detection └── best_train.pt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakerji/yolov8_firedetection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakerji/yolov8_firedetection/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakerji/yolov8_firedetection/HEAD/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakerji/yolov8_firedetection/HEAD/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakerji/yolov8_firedetection/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakerji/yolov8_firedetection/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakerji/yolov8_firedetection/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakerji/yolov8_firedetection/HEAD/utils.py -------------------------------------------------------------------------------- /weights/detection/best_train.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fakerji/yolov8_firedetection/HEAD/weights/detection/best_train.pt --------------------------------------------------------------------------------