Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel
General:  open-data-registry Type:  dataset Data Domain:  computer vision
e6654f9e5a
configured DVC storage
1 year ago
48805e11d8
dvc.yaml update
1 year ago
b5cd7b7baf
exp_yolov8s_v1
1 year ago
src
1 year ago
c556090cc2
initialized DVC
1 year ago
48805e11d8
dvc.yaml update
1 year ago
c8dda7d05e
readme update
1 year ago
1 year ago
be28477d1c
added dvc train stage
1 year ago
b5cd7b7baf
exp_yolov8s_v1
1 year ago
a445a419e8
added prediction stage to dvc pipeline
1 year ago
a3874c05e0
params update for new exp
1 year ago
1 year ago
Storage Buckets
Data Pipeline
Legend
DVC Managed File
Git Managed File
Metric
Stage File
External File

README.md

You have to be logged in to leave a comment. Sign In

wildfire-smoke-detector

ML project for wildfire smoke detection with YOLOv8.

Follow this article as a detailed guide.

This project is connected to a repository on DagsHub.

DagsHub is a GitHub for Machine Learning projects. It eases MLOps practices by enabling data scientists and machine learning engineers to version their data, models, experiments, and code, through its integration with DVC and MLflow.

Project Organization

├── Makefile           <- Makefile with commands like `make env` or `make requirements`.
├── README.md          <- Documentation for using this project.
├── params.yaml        <- configuration parameters e.g for training 
├── data
│   ├── processed      <- Processed dataset.
│   └── raw            <- The original dataset (immutable data).
│
├── models             <- Trained and serialized models, model predictions, or model summaries
├── reports            <- Generated analysis as HTML, PDF, LaTeX, etc.
│   └── figures        <- Generated graphics and figures to be used in reporting
│   └── train_metrics.csv    <- Relevant metrics after evaluating the model.
│   └── train_params.yaml    <- Params for training the model.
│
├── requirements.txt   <- The requirements file for reproducing the environment.
│
├── src                <- Source code for use in this project.
│   ├── __init__.py    <- Makes src a Python module
│   ├── train.py       <- Scripts to train the model 
│   ├── predict.py     <- Script to make predictions on test data
│   └──utils.py       <- Utility functions 
│
├── dvc.lock           <- The version definition of each dependency, stage, and output from the 
│                         DVC data pipeline.
└── dvc.yaml           <- Defining the data pipeline stages, dependencies, and outputs.

Run the project locally

  1. Clone the project:
git clone https://github.com/RihabFekii/
  1. Set up a virtual python environment, by running the following commands:
make env
source env/bin/activate .
  1. Install requirements, by running this command:
make requirements
  1. Pull the data
dvc pull

Run experiments with DVC

  1. You can experiment with the different models of YOLOv8 and edit its hyperparameters by editing the params.yaml file.

  2. Since the data pipeline is created with dvc, you can easily reproduce experiments by runing:

dvc exp run 
  1. Visualize experiments by running:
dvc exp show
Tip!

Press p or to see the previous file or, n or to see the next file

About

Training a YOLOv8 model for wildfire smoke detection.

Collaborators 1

Comments

Loading...