Initial commit

This commit is contained in:
Oracle 2026-06-02 15:45:59 +02:00
commit da2c8e636c
Signed by: Oracle
SSH key fingerprint: SHA256:x4/RtnjUyuHkdvmwNDsWSfcfF1V5PNr3OpriZqOvCX8
11 changed files with 755 additions and 0 deletions

23
run-pipeline.sh Executable file
View file

@ -0,0 +1,23 @@
#!/bin/bash
set -e
echo "============================================"
echo " Unsloth Fine-Tune Pipeline"
echo "============================================"
echo ""
echo "Step 1/3: Fine-tuning model..."
bash scripts/finetune.sh
echo ""
echo "Step 2/3: Merging and converting to GGUF..."
bash scripts/merge-and-convert.sh
echo ""
echo "Step 3/3: Running model..."
bash scripts/run-model.sh
echo ""
echo "============================================"
echo " Pipeline complete!"
echo "============================================"