Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Fast QLoRA/QLoRA fine-tuning with 2x faster training and 50% less memory. Supports Llama, Mistral, Gemma, Qwen, DeepSeek, Phi, Yi, Falcon. Flash Attention, 4-bit quantization. No quality loss.
.claude/skills/mkurman-unsloth/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -12% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -26% | 0% |
| case-14 | ✗→✓ | ▲ Improved | -13% | 0% |
| case-16 | ✗→✓ | ▲ Improved | -49% | 0% |
| case-17 | ✗→✓ | ▲ Improved | -19% | 0% |
Unsloth provides 2x faster QLoRA training with 50% less memory via optimized kernels. Supports Llama, Mistral, Gemma, Qwen 2.5, DeepSeek, Phi, Yi, and Falcon with Flash Attention.
bashuv pip install unsloth
pythonfrom unsloth import FastLanguageModel import torch model, tokenizer = FastLanguageModel.from_pretrained( model_name="unsloth/Qwen2.5-7B-Instruct-bnb-4bit", max_seq_length=4096, dtype=torch.bfloat16, load_in_4bit=True, ) model = FastLanguageModel.get_peft_model( model, r=16, target_modules=["q_proj", "k_proj", "v_proj", "o_proj"], lora_alpha=16, use_gradient_checkpointing="unsloth", ) print(model.print_trainable_parameters())
pythonFastLanguageModel.for_inference(model) inputs = tokenizer(["Describe quantum computing."], return_tensors="pt").to("cuda") print(tokenizer.decode(model.generate(**inputs, max_new_tokens=256)[0]))
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 10,452 | 7,396 | -29% | 1 | 1 | 0% | 2,146 | 1,887 | -12% | 0 | 0 | — |
case-02 | fail→pass | 12,937 | 7,117 | -45% | 1 | 1 | 0% | 2,551 | 1,879 | -26% | 0 | 0 | — |
case-03 | pass→pass | 12,291 | 4,618 | -62% | 1 | 1 | 0% | 2,062 | 1,132 | -45% | 0 | 0 | — |
case-04 | pass→pass | 5,281 | 2,648 | -50% | 1 | 1 | 0% | 1,021 | 863 | -15% | 0 | 0 | — |
case-05 | fail→fail | 13,610 | 9,554 | -30% | 1 | 1 | 0% | 2,345 | 2,244 | -4% | 0 | 0 | — |
case-06 | fail→fail | 10,964 | 5,994 | -45% | 1 | 1 | 0% | 2,001 | 1,446 | -28% | 0 | 0 | — |
case-07 | pass→pass | 3,247 | 2,078 | -36% | 1 | 1 | 0% | 556 | 746 | +34% | 0 | 0 | — |
case-08 | fail→fail | 10,752 | 6,544 | -39% | 1 | 1 | 0% | 1,919 | 1,561 | -19% | 0 | 0 | — |
case-09 | pass→pass | 8,456 | 5,645 | -33% | 1 | 1 | 0% | 1,499 | 1,370 | -9% | 0 | 0 | — |
case-10 | pass→pass | 4,867 | 3,475 | -29% | 1 | 1 | 0% | 719 | 907 | +26% | 0 | 0 | — |
case-11 | pass→pass | 3,596 | 2,336 | -35% | 1 | 1 | 0% | 600 | 783 | +31% | 0 | 0 | — |
case-12 | fail→fail | 6,995 | 5,494 | -21% | 1 | 1 | 0% | 1,272 | 1,329 | +4% | 0 | 0 | — |
case-13 | pass→pass | 4,026 | 2,491 | -38% | 1 | 1 | 0% | 674 | 738 | +9% | 0 | 0 | — |
case-14 | fail→pass | 9,393 | 6,011 | -36% | 1 | 1 | 0% | 1,672 | 1,448 | -13% | 0 | 0 | — |
case-15 | pass→pass | 10,805 | 3,278 | -70% | 1 | 1 | 0% | 1,856 | 970 | -48% | 0 | 0 | — |
case-16 | fail→pass | 8,306 | 2,226 | -73% | 1 | 1 | 0% | 1,421 | 729 | -49% | 0 | 0 | — |
case-17 | fail→pass | 4,732 | 1,893 | -60% | 1 | 1 | 0% | 760 | 614 | -19% | 0 | 0 | — |
case-18 | pass→pass | 3,085 | 1,532 | -50% | 1 | 1 | 0% | 467 | 580 | +24% | 0 | 0 | — |
case-19 | fail→pass | 6,147 | 2,166 | -65% | 1 | 1 | 0% | 1,091 | 621 | -43% | 0 | 0 | — |
case-20 | fail→pass | 11,158 | 7,214 | -35% | 1 | 1 | 0% | 2,031 | 1,838 | -10% | 0 | 0 | — |
case-21 | pass→pass | 17,294 | 13,025 | -25% | 1 | 1 | 0% | 3,190 | 2,846 | -11% | 0 | 0 | — |
case-22 | pass→pass | 16,521 | 14,552 | -12% | 1 | 1 | 0% | 3,006 | 3,227 | +7% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +32 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.