# Project Setup Guide ## Installation 1. Create Python environment: python -m venv env source env/bin/activate # Linux/macOS .\env\Scripts\activate # Windows 2. Install dependencies: pip install -r requirements.txt 3. Run training example: python src/model/train.py --- ## Usage - Run demo app: streamlit run demo_app/app.py undefined