An open API service indexing awesome lists of open source software.

https://github.com/arv-anshul/ml-project-template

Project template for Machine Learning prefer for internship projects by Ineuron.ai and PW Skills.
https://github.com/arv-anshul/ml-project-template

arv-dumped ineuron-ai internship-project machine-learning physics-wallah project-template pw-skills python3 template

Last synced: 3 months ago
JSON representation

Project template for Machine Learning prefer for internship projects by Ineuron.ai and PW Skills.

Awesome Lists containing this project

README

        

# ML Project Template

### Project File Structure

👀 Click to see!

```sh
.
├── README.md
├── requirements.txt
└── src
├── __init__.py
├── components
│ ├── __init__.py
│ ├── data
│ │ ├── __init__.py
│ │ ├── ingestion.py
│ │ ├── transformation.py
│ │ └── validation.py
│ └── model
│ ├── __init__.py
│ ├── evaluation.py
│ ├── factory.py
│ └── trainer.py
├── core
│ ├── __init__.py
│ ├── constants.py
│ ├── errors.py
│ ├── io.py
│ └── logger.py
├── database
│ ├── __init__.py
│ ├── schema.py
│ └── schema.yaml
├── entity
│ ├── __init__.py
│ ├── artifact.py
│ └── config.py
└── utils
└── __init__.py
```

### Demo Projects

I already build some projects with this project template.

> [!NOTE]
>
> They maybe seems irregular with their file structure but they follow this template.

1. [💸 Money Laundering Prevention System](https://github.com/arv-anshul/ineuron-money-laundering)
2. [📦 Products Backorder Prediction](https://github.com/arv-anshul/ineuron-backorder-prediction)