Here's the improved and corrected version of your Kolosal AutoML Tutorial README:
This repository demonstrates how to use Kolosal AutoML to train, evaluate, and explain a regression model using the California Housing dataset.
- How to load and prepare data
- How to train a model using Kolosal AutoML
- How to evaluate model performance
- How to generate a performance report
- How to generate model explainability insights
git clone https://github.com/Genta-Technology/automl_tutorial.git
cd automl_tutorial
python -m venv venv
# On Windows:
venv\Scripts\activate
# On macOS/Linux:
source venv/bin/activate
Install uv
(a faster pip replacement):
pip install uv
Then install dependencies:
uv pip sync requirements.lock.txt
uv
is a fast dependency manager that automatically usespyproject.toml
for locking and syncing environments.
jupyter notebook tutorial.ipynb
tutorial.ipynb
– Main notebook tutorialrequirements.lock.txt
– Locked dependency versionsREADME.md
– This file
- Python 3.8+
- Jupyter Notebook
- Kolosal AutoML
- scikit-learn
uv
for dependency management
This project is licensed under the MIT License.
Let me know if you’d like to turn this into a README.md
file directly or need a version tailored for docs/
.