Prepare datasets run LoRA fine tuning evaluate and deploy
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill fine-tuning-workflow --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Fine Tuning Workflow?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-fine-tuning-workflow)More formats (shields.io, HTML) on the badges page.
---
name: fine-tuning-workflow
description: "Prepare datasets run LoRA fine tuning evaluate and deploy"
---
# Fine-Tuning Workflow
## Data Format
```jsonl
{"messages": [
{"role": "system", "content": "You are helpful"},
{"role": "user", "content": "What is Python?"},
{"role": "assistant", "content": "Python is..."}
]}
```
## LoRA (Unsloth)
```python
from unsloth import FastLanguageModel
model, tokenizer = FastLanguageModel.from_pretrained("unsloth/Llama-3.2-3B")
model = FastLanguageModel.get_peft_model(model, r=16)
# Train...
model.save_pretrained("lora-output")
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!