AliesTaha/fable-traces
Summary
fable-traces is a compact instruction-tuned language model based on Qwen3-4B-Instruct-2507, tuned for short conversational replies and runs on a single mid-range GPU. Released under Apache 2.0.
View Cached Full Text
Cached at: 07/04/26, 06:38 PM
AliesTaha/fable-traces · Hugging Face
Source: https://huggingface.co/AliesTaha/fable-traces
A compact instruction-tuned language model built onQwen/Qwen3-4B-Instruct-2507.fable\-tracesis tuned for short, conversational replies and runs comfortably on a single mid-range GPU.
https://huggingface.co/AliesTaha/fable-traces#usageUsage
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
repo = "AliesTaha/fable-traces"
tok = AutoTokenizer.from_pretrained(repo)
model = AutoModelForCausalLM.from_pretrained(repo, dtype=torch.bfloat16, device_map="auto")
messages = [{"role": "user", "content": "Tell me something interesting."}]
ids = tok.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to(model.device)
out = model.generate(ids, max_new_tokens=100, do_sample=False)
print(tok.decode(out[0, ids.shape[1]:], skip_special_tokens=True))
Serve with vLLM:
vllm serve AliesTaha/fable-traces
https://huggingface.co/AliesTaha/fable-traces#detailsDetails
Base modelQwen3-4B-Instruct-2507Parameters~4BPrecisionbfloat16 (safetensors)Prompt formatChatML — use the tokenizer’s chat templateContext lengthinherits the base model
https://huggingface.co/AliesTaha/fable-traces#licenseLicense
Apache 2.0, following the base model.
Similar Articles
Claude Fable 5 distilled
Qwable-v1 is an open-weights agentic coding model (35B MoE, 3B active) built by chaining distills from Claude Opus 4.7 reasoning and Claude Fable-5 agentic tool-use traces. It can think in explicit CoT chains and act as a Claude-Code-style agent when prompted.
GnLOLot/MiniCPM5-1B-Claude-Opus-Fable5-Thinking
MiniCPM5-1B-Claude-Opus-Fable5-Thinking is a compact 1B thinking language model fine-tuned from openbmb/MiniCPM5-1B on Fable 5 data, enhancing coding and instruction-following while retaining the native thinking chat template and tool-call format. It supports up to 128K context and is suitable for local deployment.
Qwen/Qwen3.6-27B-FP8
Alibaba releases Qwen3.6-27B-FP8, a 27B FP8-quantized model with strong agentic coding and reasoning benchmarks, now available on Hugging Face.
@Tono_Ken3: Added Q3 series to gemma-4-12B-coder-fable5-composer2.5-GGUF You might be able to try out the essence of Fable5 (as a t…
New Q3 quantizations added to the gemma-4-12B-coder-fable5-composer2.5 GGUF model, enabling the coding-focused fine-tune to run on GPUs with around 6GB VRAM using importance-matrix quantized versions.
empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF
Empero AI releases Qwythos-9B-Claude-Mythos-5-1M-GGUF, a 9B parameter reasoning model fine-tuned on 500M+ tokens of Claude Mythos/Fable traces with chain-of-thought, achieving significant gains over Qwen3.5-9B and supporting 1M-token context via YaRN rope-scaling. The GGUF quantizations enable local inference on llama.cpp and compatible runtimes.