heydido / INRCoinSense

A Deep Learning project to detect and classify INR coins

Home Page:https://dagshub.com/heydido/INRCoinSense

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

INRCoinSense

1

An object detection and classification system to accurately identify Indian coins using YOLO and PyTorch, enhanced with MLOps tools like DVC and MLFlow for efficient data versioning, experiment tracking, and deployment.


Setting Up the Project:

  1. Clone the repository
  2. Create a virtual environment using setup.sh:
    bash setup.sh 
    
  3. Activate the virtual environment (optional, if not done in step 2)
    source activate ./venv
    

Workflow:

  1. Update config: config/config.yaml
  2. Update the entity: src/INRCoinSense/entity/config_entity.py
  3. Update the configuration manager: src/INRCoinSense/config/configuration.py
  4. Update the components: src/INRCoinSense/components
  5. Update the pipeline: src/INRCoinSense/pipeline
  6. Update entrypoint: main.py

MLFlow Setup:

Get these from the DAGsHub server.

Commands to set up the MLFlow environment:

  1. MLFlow Tracking URI:
    export MLFLOW_TRACKING_URI=https://dagshub.com/heydido/INRCoinSense.mlflow
    
  2. MLFlow Tracking Username:
    export MLFLOW_TRACKING_USERNAME=<user_name>
    
  3. MLFlow Tracking Password:
     export MLFLOW_TRACKING_PASSWORD=<********>
    

1

MlFlow tracking server: INRCoinSense


DVC Setup:

Commands to set up the DVC environment:

  1. Initialize DVC (onetime):

    dvc init
    
  2. Write the DVC file: dvc.yaml (onetime)

  3. Run the DVC pipeline:

    dvc repro
    

    Note: "dvc repro" will fail if you haven't exported the MLFlow variables as explained in the MLFlow Setup section.

  4. Track each experiment changes with git:

    git add .
    git commit -m "DVC: <message>"
    git push origin main
    
  5. Add DVC Remote (one-time):

    dvc remote add origin s3://dvc
    dvc remote modify origin endpointurl https://dagshub.com/heydido/INRCoinSense.s3
    
  6. Push the DVC changes:

    dvc remote default origin (onetime)
    dvc push
    

DVC DAG:

1


Complete Data Pipeline:

1

for better clarity, visit the DAGsHub repo: INRCoinSense


This project is created using a public template I created: MLProjectTemplate

About

A Deep Learning project to detect and classify INR coins

https://dagshub.com/heydido/INRCoinSense

License:Other


Languages

Language:Python 96.3%Language:Jupyter Notebook 2.1%Language:Shell 1.2%Language:Dockerfile 0.4%