Initial commit
This commit is contained in:
commit
da2c8e636c
11 changed files with 755 additions and 0 deletions
23
run-pipeline.sh
Executable file
23
run-pipeline.sh
Executable 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 "============================================"
|
||||
Loading…
Add table
Add a link
Reference in a new issue