File size: 366 Bytes
72f4d4d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# 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 |