Views
No views yet
| Quantization | Size | Use case |
|---|---|---|
| Q4_K_M | 15.4 GB | ✅ Recommended — 24GB VRAM or 32GB unified memory |
| Q8_0 | 26.6 GB | Near-lossless, 32GB+ VRAM or 48GB unified memory |
| Parameter | Value |
|---|---|
| Base model | Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled |
| Training GPU | NVIDIA A100 SXM4 80GB |
| Framework | Unsloth + TRL SFTTrainer |
| Dataset | OpenClaw tool-call examples (243 examples) |
| Training time | ~102 minutes |
| Epochs | 3 |
| Steps | 48 |
| Final loss | 0.7066 |
| LoRA rank | r=32, alpha=64, rsLoRA=True |
| LoRA dropout | 0.05 |
| LoRA targets | q/k/v/o/gate/up/down proj |
| Trainable params | 159,383,552 (0.58%) |
| Context window | 4096 tokens |
| Batch size | 1 (effective: 8 with grad accum) |
| Learning rate | 2e-4 (cosine schedule, 5% warmup) |
| Quantization | 4-bit NF4 during training |
| Optimizer | AdamW 8-bit |
1<function_calls>
2<invoke name="TOOL_NAME">
3<parameter name="PARAM_NAME">value</parameter>
4</invoke>
5</function_calls>exec, read, write, edit, web_search, web_fetch, browser, memory_search, memory_get, message, cron, nodes, image, pdf, sessions_spawn, session_status1# Ollama (Q4_K_M)
2ollama run hf.co/peterjohannmedina/Medina-Qwen3.5-27B-OpenClaw:Q4_K_M
3
4# llama.cpp direct
5./llama-cli -m Medina-Qwen3.5-27B-OpenClaw-Q4_K_M.gguf \
6 --ctx-size 4096 -p "You are an AI assistant with access to tools..."1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3import torch
4
5base = AutoModelForCausalLM.from_pretrained(
6 "Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled",
7 torch_dtype=torch.bfloat16,
8 device_map="auto",
9)
10model = PeftModel.from_pretrained(base, "peterjohannmedina/Medina-Qwen3.5-27B-OpenClaw")
11tokenizer = AutoTokenizer.from_pretrained("peterjohannmedina/Medina-Qwen3.5-27B-OpenClaw")