Objective: A simple and well-designed template structure to start a machine learning/deep learning-based project. The template provides a basic directory structure with additional files (like notebooks/pytorch-boilerplate.ipynb
to perform EDA. In addition, the template is designed such that code can be deployed into production. Quickly get started working on the code and preparing documentation as highlighted below. To understand the template check HOWTO.md file.
Please follow the following steps to run the project locally
git clone https://github.com/m-np/ai-ml-project-template.git
- Open Anaconda console/Terminal and navigate into project directory
cd path_to_repo
- Run the following steps:
conda create -n <env_name> python==3.10
conda activate <env_name>
pip install -r requirements.txt --no-cache-dir
conda activate <env_name> && pre-commit install -t pre-commit
conda activate <env_name> && pre-commit install -t pre-push
For adding the new conda environment to the jupyter notebook follow this additional instruction
- Run
conda install -c anaconda ipykernel
- Run
python -m ipykernel install --user --name=<env_name>
For pytorch installation:
PyTorch pip package will come bundled with some version of CUDA/cuDNN with it, but it is highly recommended that you install a system-wide CUDA beforehand, mostly because of the GPU drivers. I also recommend using Miniconda installer to get conda on your system. Follow through points 1 and 2 of this setup and use the most up-to-date versions of Miniconda and CUDA/cuDNN for your system.
For other module installation, please follow the following steps:
- Open Anaconda console/Terminal and navigate into project directory
cd path_to_repo
- Run
conda activate <env_name>
- Run
pip install -r requirements.txt
found 👉requirements.txt
✍️ Information about the used models/engines/agents and their performance can be documented here ✨. An AI/ML trained model can be stored in their respective directories.
Report Link: ✍️
report link
📒
📇 Documentation and/or Resources for your codes, and other mentions can be included in this section! 🔑