A machine learning project built with Python and VS Code.
Inspired by Etienne Bernards Introduction to Machine Learning
📂 machinewolf/
├── 📂 env/ # Virtual environment
├── 📂 data/ # Raw or processed datasets
├── 📂 models/ # Saved models
├── 📂 src/ # Python scripts
│ ├── main.py # Main entry point for the program
│ ├── preprocessing.py # Data cleaning/preprocessing scripts
│ └── model.py # ML model definition
├── requirements.txt # List of dependencies
└── README.md # Project description and setup instructions- Python 3.9 or higher
- Git
- VS Code
git clone https://github.com/BongoSort/machinewolf.gitcd machinewolf
python -m venv env# On Windows:
.\env\Scripts\activate
# On macOS/Linux:
source env/bin/activatepip install -r requirements.txt