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.
- Host: GitHub
- URL: https://github.com/arv-anshul/ml-project-template
- Owner: arv-anshul
- Created: 2023-07-04T04:42:00.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-09T15:41:34.000Z (over 1 year ago)
- Last Synced: 2024-12-25T20:14:00.614Z (4 months ago)
- Topics: arv-dumped, ineuron-ai, internship-project, machine-learning, physics-wallah, project-template, pw-skills, python3, template
- Language: Python
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)