| #!/bin/bash |
| |
| |
|
|
| echo "============================================" |
| echo " SAHELI - Smart Adaptive Health Engine" |
| echo " Quick Start Setup" |
| echo "============================================" |
|
|
| |
| echo "" |
| echo "[1/3] Installing training dependencies..." |
| pip install -U unsloth trl torch datasets trackio accelerate transformers bitsandbytes peft xformers |
|
|
| |
| echo "" |
| echo "[2/3] Logging into HuggingFace..." |
| echo "Please run: huggingface-cli login" |
| echo "Or set HF_TOKEN environment variable" |
|
|
| |
| echo "" |
| echo "[3/3] Launching training..." |
| echo "Run: python train_saheli.py" |
| echo "" |
| echo "============================================" |
| echo " After training completes, your models will be at:" |
| echo " - LoRA: https://huggingface.co/muthuk1/saheli-gemma4-e4b-medical" |
| echo " - Merged: https://huggingface.co/muthuk1/saheli-gemma4-e4b-medical-merged" |
| echo " - GGUF: https://huggingface.co/muthuk1/saheli-gemma4-e4b-medical-gguf" |
| echo "" |
| echo " Live Demo: https://huggingface.co/spaces/muthuk1/saheli-community-health-ai" |
| echo "============================================" |
| echo "" |
| echo "For local deployment with Ollama:" |
| echo " ollama create saheli -f Modelfile" |
| echo " ollama run saheli" |
|
|