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
DavidAU/Qwen3.8-27B-TURBO-Fable-Cold-Fusion-735-882-Heretic-Uncensored-NEO-CODER-MAX-MTP-GGUF
A fine-tuned version of Qwen3.8-27B that significantly reduces thinking tokens while exceeding key AI benchmarks like ARC-C and ARC-E, optimized for consumer hardware.
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.
peculiar-ragdoll/Tiel-Coder-35B-A3B-GGUF
Tiel-Coder-35B-A3B-GGUF is a dynamically quantized AI model optimized for coding tasks, achieving competitive performance on benchmarks like SWE-bench-Live and multi-turn conversations, while being efficient for local inference.
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.