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