llm-finetuned-model / docs /setup_guide.md
promptsbyesha's picture
Upload folder using huggingface_hub
72f4d4d verified
# 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