Overview / Description
Fabric 1.5 is an open-source small language model built by Fabric AI: a 0.7B-parameter, decoder-only causal transformer released under Apache 2.0 and hosted on Hugging Face. Its defining feature is Chunked Fabric Memory, a mechanism that compresses past context into learned chunk summaries and blends them with local attention through a learned gate, which lets the model reach 32,768-token contexts at sub-quadratic memory cost. Architecturally, Fabric 1.5 has 24 layers (16 LocalBlock plus 8 FabricMemoryBlock, with every third layer a memory block), a hidden dimension of 1,536, and SwiGLU feed-forward networks with intermediate size 4,096. LocalBlocks use Grouped Query Attention with a 2,048-token causal sliding window and Pre-RMSNorm residual connections. The model was trained on 12 billion tokens using 8 NVIDIA H100 GPUs on a single DGX node. Because the weights, system card, and license are all public, developers can download the model directly, quantize it, and self-host it rather than call a hosted API. It targets researchers and engineers who want a compact long-context model they can inspect, fine-tune, and run on modest hardware.
Used For
Best for ML engineers and researchers who need a compact, inspectable long-context model they can self-host and fine-tune.
Pricing
Open source (Apache 2.0)
Free to download, self-host, and fine-tune from Hugging Face under the Apache 2.0 license
Pros & Cons
Pros
- Chunked Fabric Memory compresses past context into learned summaries, reaching 32,768-token contexts at sub-quadratic memory cost
- Small 0.7B-parameter footprint (24 layers, 1,536 hidden dim) that runs on modest hardware and supports quantization
- Apache 2.0 license with weights and a published system card on Hugging Face, so it can be self-hosted and fine-tuned freely
- Documented architecture: Grouped Query Attention with a 2,048-token sliding window and SwiGLU FFNs, trained on 12B tokens
Cons
- At 0.7B parameters, reasoning and knowledge depth are far below frontier-scale models
- Trained on only 12 billion tokens, which limits factual breadth compared with large-corpus models
- Chunked memory is a custom mechanism, so it needs the FabricMemoryBlock code path rather than plain transformer tooling
- No hosted API or managed endpoint published — you must run inference yourself
Questions & Answers
Alternatives
Qwen 0.5B/1.8B, SmolLM, TinyLlama
Reviews & Ratings
0 reviews
Sign in to rate and review Fabric 1.5.
Sign in to reviewNo reviews yet. Be the first to review Fabric 1.5!