Agent skill

unsloth-gguf

Unsloth provides a streamlined method to export fine-tuned models directly to GGUF format. It features "Dynamic 2.0" quantization, which protects sensitive weights to maintain high accuracy, and automates the merging of LoRA adapters.

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill unsloth-gguf-cuba6112-skillfactory-c22932b8 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/ai-ml/unsloth-gguf-cuba6112-skillfactory-c22932b8/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

--- name: unsloth-gguf description: Exporting fine-tuned models to GGUF format for deployment in llama.cpp, Ollama, and local serving tools. Triggers: gguf, quantization export, llama.cpp, ollama, save_pretrained_gguf, modelfile. --- ## Overview Unsloth provides a streamlined method to export fine-tuned models directly to GGUF format. It features "Dynamic 2.0" quantization, which protects sensitive weights to maintain high accuracy, and automates the merging of LoRA adapters. ## When to Use - When deploying models to local serving platforms like Ollama, llama.cpp, or LM Studio. - When model size needs to be minimized for CPU-based inference or low-VRAM GPUs. - When sharing models with the community via GGUF format. ## Decision Tree 1. Is target VRAM very low? - Yes: Use `quantization_method = 'q4_k_m'` or higher compression. - No: Use `q8_0` or `f16` for maximum quality. 2. Deploying to Ollama? - Yes: Export to GGUF and then create a `Modelfile` with a `FROM` command. ## Workflows ### Exporting Fine-tuned Models to GGUF 1. After training, call `model.save_pretrained_gguf("name", tokenizer, quantization_method='q4_k_m')`. 2. Specify quantization method (e.g., `q4_k_m`, `q8_0`, `f16`

What's inside
Steps it walks through
  1. Overview
  2. When to Use
  3. Decision Tree
  4. Workflows
  5. Exporting Fine-tuned Models to GGUF
  6. Deploying to Ollama
  7. Non-Obvious Insights
  8. Evidence
  9. Scripts
  10. Dependencies
  11. References
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the unsloth-gguf skill do?

Unsloth provides a streamlined method to export fine-tuned models directly to GGUF format. It features "Dynamic 2.0" quantization, which protects sensitive weights to maintain high accuracy, and automates the merging of LoRA adapters.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill unsloth-gguf-cuba6112-skillfactory-c22932b8 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going