SAVRN
Search Contact SAVRN

Open-weight model · Text generation

LFM2.5-8B-A1B-Opus-Distil

by Convergent Intelligence reaperdoesntknow/LFM2.5-8B-A1B-Opus-Distil

This model is a fine-tuned version of LiquidAI/LFM2.5-8B-A1B, adapted on the angrygiraffe/claude-opus-4.6-4.7-reasoning-8.7k dataset for English text-generation and reasoning-style responses.

Parameters8.5B
Context128,000
Weights16.9 GB
Licenseapache-2.0
AccessOpen weights
Monthly Downloads3.4k

Runs On

What it takes to serve LFM2.5-8B-A1B-Opus-Distil (8.5B parameters): the memory its weights need at each precision, and the cheapest way to rent enough data-center GPUs to hold them.

PrecisionWeightsMemory neededCheapest setupPer hourAlso fits
16-bit 16.9 GB 20.3 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 8.5 GB 10.2 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 4.2 GB 5.1 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00

Memory is the weights at that precision plus 20% for the runtime and a short context; a long context needs more. Prices are the lowest on-demand hourly rates in the SAVRN Index, read Sep 18, 2026.

Model Card

By Convergent Intelligence, published under apache-2.0, revision 8e0f05d9ce09.

This model is a fine-tuned version of LiquidAI/LFM2.5-8B-A1B, adapted on the angrygiraffe/claude-opus-4.6-4.7-reasoning-8.7k dataset for English text-generation and reasoning-style responses. The fine-tuning run used a custom Convergent Intelligence optimizer stack, CIxOpt, designed for heterogeneous routing across parameter types. The goal of this checkpoint is to test whether a Liquid Foundation Model backbone can be adapted efficiently through targeted sparse participation rather than broad full-model modification. This is an experimental research checkpoint intended for continued evaluation, domain adaptation, and architecture/optimizer testing.…

Read Convergent Intelligence's full model card

CIx-LFM2.5-8B-A1B Reasoning SFT

Model Summary

This model is a fine-tuned version of LiquidAI/LFM2.5-8B-A1B, adapted on the angrygiraffe/claude-opus-4.6-4.7-reasoning-8.7k dataset for English text-generation and reasoning-style responses.

The fine-tuning run used a custom Convergent Intelligence optimizer stack, CIxOpt, designed for heterogeneous routing across parameter types. The goal of this checkpoint is to test whether a Liquid Foundation Model backbone can be adapted efficiently through targeted sparse participation rather than broad full-model modification.

This is an experimental research checkpoint intended for continued evaluation, domain adaptation, and architecture/optimizer testing.

Base Model

  • Base: LiquidAI/LFM2.5-8B-A1B
  • Architecture family: Liquid Foundation Model / hybrid causal language model
  • Task: Causal language modeling
  • Language: English
  • License: Apache 2.0, inherited from the released model metadata unless otherwise restricted by upstream dependencies

Dataset

Fine-tuning data:

  • angrygiraffe/claude-opus-4.6-4.7-reasoning-8.7k

The dataset was processed into chat-style training examples using tokenizer-compatible chat formatting where available. Empty or malformed examples were filtered before tokenization.

Training Method

This model was trained using the Convergent Intelligence CIxOpt optimizer framework.

Optimizer Design

CIxOpt applies heterogeneous routing based on parameter type and tensor structure:

  • Lion-style sign momentum for large projection matrices
  • AdamW-style updates for sensitive normalization surfaces
  • Adamax-style handling available for embeddings or language-head-style parameters
  • fp32 optimizer state for bf16/fp16 model safety
  • Gradient centralization for eligible matrix-shaped gradients
  • Discrepancy-aware caution filtering for sign updates
  • Decoupled weight decay
  • Gradient clipping during training

Sparse Participation Strategy

The fine-tuning strategy was designed to avoid unnecessary modification of the full pretrained backbone. Instead, training focused on selected adaptation surfaces, especially upper-layer projection and normalization modules.

The intended training philosophy was:

text freeze most pretrained structure adapt upper reasoning / response-shaping layers preserve lower representational substrate route parameter groups by optimizer behavior

This makes the checkpoint useful for studying efficient adaptation of LFM-family models under constrained compute.

Intended Use

This model is intended for:

  • Research on Liquid Foundation Model fine-tuning
  • Optimizer experiments with CIxOpt
  • Reasoning-style text generation
  • Instruction-following experiments
  • Lightweight comparative evaluation against other small or sparse-adapted causal LMs
  • Continued fine-tuning or domain adaptation

Example use cases:

  • Analytical response generation
  • Reasoning trace compression
  • Technical explanation
  • Experimental agent backbones
  • Small-scale model behavior studies

Out-of-Scope Use

This model is not intended for high-stakes autonomous deployment without additional evaluation.

Do not use this model as the sole decision-maker for:

  • Medical diagnosis
  • Legal judgment
  • Financial decisions
  • Emergency response
  • Cyber offensive automation
  • Personnel screening
  • Surveillance or targeting decisions
  • Any setting requiring verified factual accuracy

Limitations

This is an experimental fine-tuned checkpoint. Known or expected limitations include:

  • May hallucinate facts, citations, dates, or source attributions
  • May inherit biases or artifacts from the base model and fine-tuning data
  • May overproduce reasoning-style explanations when shorter answers are preferred
  • May be sensitive to prompt formatting
  • Has not been fully benchmarked across safety, factuality, coding, mathematics, or instruction-following suites
  • Fine-tuning on reasoning-style data does not guarantee correct reasoning
  • Sparse or targeted adaptation may leave some capabilities close to the base model while changing others unevenly

Safety Notes

Users should independently validate important outputs. Generated content may be plausible but incorrect.

For deployment-facing use, additional steps are recommended:

  • Benchmark against known evaluation suites
  • Run toxicity and bias evaluation
  • Test refusal behavior
  • Evaluate hallucination rate
  • Compare against the base model
  • Add domain-specific guardrails
  • Use retrieval or verification for factual tasks

Example Usage

import torch
from transformers import AutoTokenizer, AutoModelForCausalLM

model_id = "reaperdoesntknow/LFM2.5-8B-A1B-Opus-Distil"

tokenizer = AutoTokenizer.from_pretrained(
    model_id,
    trust_remote_code=True,
)

model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype=torch.bfloat16,
    device_map="auto",
    trust_remote_code=True,
)

if tokenizer.pad_token is None:
    tokenizer.pad_token = tokenizer.eos_token

prompt = "Explain why stable positional encoding matters for long-context language models."

inputs = tokenizer(
    prompt,
    return_tensors="pt",
).to(model.device)

with torch.inference_mode():
    output = model.generate(
        **inputs,
        max_new_tokens=1024,
        do_sample=True,
        temperature=0.7,
        top_p=0.95,
        repetition_penalty=1.05,
        pad_token_id=tokenizer.eos_token_id,
    )

print(tokenizer.decode(output[0], skip_special_tokens=True))

Training Configuration

Approximate training configuration used:

text base_model: LiquidAI/LFM2.5-8B-A1B dataset: angrygiraffe/claude-opus-4.6-4.7-reasoning-8.7k task: causal language modeling / instruction-style SFT optimizer: CIxOpt state_dtype: fp32 weight_decay: enabled gradient_clipping: enabled chat_template: tokenizer-compatible formatting padding: max_length loss_masking: padding tokens masked with -100

Exact loss curves, benchmark scores, and hardware details should be added after evaluation.

Evaluation

Formal benchmark results have not yet been added.

Recommended evaluation targets:

  • Perplexity on held-out validation data
  • MT-Bench-style instruction following
  • IFEval
  • GSM8K or similar lightweight reasoning checks
  • MMLU-style knowledge evaluation
  • TruthfulQA-style hallucination testing
  • Human preference comparison against the base model
  • Side-by-side testing against smaller LFM2.5 checkpoints

Citation

Base model:

bibtex @misc{liquidai_lfm25, title = {LFM2.5-8B-A1B}, author = {Liquid AI}, year = {2025}, publisher = {Hugging Face}, howpublished = {\url{https://huggingface.co/LiquidAI/LFM2.5-8B-A1B}} }

Fine-tuning dataset:

bibtex @misc{angrygiraffe_reasoning_dataset, title = {claude-opus-4.6-4.7-reasoning-8.7k}, author = {angrygiraffe}, publisher = {Hugging Face}, howpublished = {\url{https://huggingface.co/datasets/angrygiraffe/claude-opus-4.6-4.7-reasoning-8.7k}} }

Author / Maintainer

Fine-tuning and optimizer experimentation by: Convergent Intelligence LLC | Research & Development Divisions Research and development focus: AI systems, intelligence analysis, mathematical frameworks, optimizer design, and efficient model adaptation.

Disclaimer

This model is provided for research and experimentation. It should not be treated as a verified expert system. Outputs require human review, especially in factual, technical, legal, medical, financial, operational, or safety-critical contexts.

Configuration

Architecture
Lfm2MoeForCausalLM
Context length (tokens)
128,000
Layers
24
Hidden size
2,048
Feed-forward size
7,168
Attention heads
32
Key/value heads
8
Vocabulary size
128,000
Experts
32
Experts active per token
4
Model type
lfm2_moe

Identity and Version

Repository
reaperdoesntknow/LFM2.5-8B-A1B-Opus-Distil
Publisher
Convergent Intelligence
Task
Text generation
Modality
Text
Library
transformers
Parameters
8.5B parameters
Languages
en
Revision
8e0f05d9ce0944bca00b483ce35c9af162604bb9
First published
2026-05-30
Last updated
2026-09-18

Files and Weights

8 files, 17.0 GB in total. The weights are 1 file totalling 16.9 GB in safetensors.

Weights1 file · 16.9 GB
Configuration2 files · 1.4 KB
Tokenizer2 files · 17.9 MB
Documentation1 file · 7.8 KB
Other1 file · 4.6 KB
Repository1 file · 1.6 KB
Every file
FileTypeSizeSHA-256
model.safetensorsWeights16.9 GB c9282a548450
config.jsonConfiguration1.2 KB
generation_config.jsonConfiguration230 B
README.mdDocumentation7.8 KB
chat_template.jinjaOther4.6 KB
.gitattributesRepository1.6 KB
tokenizer.jsonTokenizer17.9 MB ea5615d5ab09
tokenizer_config.jsonTokenizer510 B

License and Download

License
apache-2.0
Access
Open weights, no gate
Download size
16.9 GB
Download from Convergent Intelligence

Released by Convergent Intelligence through its official repository on Hugging Face. Read the license.

Built From

  • Derived from LiquidAI/LFM2.5-8B-A1B
  • Trained on (disclosed) angrygiraffe/claude-opus-4.6-4.7-reasoning-8.7k

Memory Requirements

PrecisionWeights in memory
As published16.9 GB
16-bit16.9 GB
8-bit8.5 GB
4-bit4.2 GB

Weights only, from the published parameter count; the key-value cache and runtime add to this.

Questions About LFM2.5-8B-A1B-Opus-Distil

How much GPU memory does LFM2.5-8B-A1B-Opus-Distil need?

About 20.3 GB at 16-bit and 5.1 GB at 4-bit: the weights (8.5B parameters) plus a working margin. A long context needs more.

What is the cheapest GPU to run LFM2.5-8B-A1B-Opus-Distil on?

At 16-bit, 1x MI300X from $1.85 an hour; at 4-bit, 1x MI300X from $1.85 an hour, at the lowest on-demand prices the SAVRN Index lists.

Can I use LFM2.5-8B-A1B-Opus-Distil commercially?

Yes. LFM2.5-8B-A1B-Opus-Distil is released under Apache License 2.0. The Apache License 2.0 is a permissive open-source license. It permits commercial use, modification and redistribution. It requires keeping the license and copyright notices and any NOTICE file, stating significant changes, and it includes an express patent grant from contributors.

What is LFM2.5-8B-A1B-Opus-Distil's context length?

128,000 tokens, from the maximum position embeddings in its published configuration.

Similar Models

DuoNeural/LFM2.5-8B-A1B-Hermes-Agentic-Coder-Abliterated-v2 is an apex-tier, uncensored autonomous agentic coding model trained by DuoNeural (Aura, Archon, and Jesse). Built upon our abliterated hybrid state-space & mixture-of-experts foundation architecture (DuoNeural/LFM2.5-8B-A1B-Abliterated), this model activates only 1.5 billion parameters per token out of its 8.3 billion total parameters, delivering blistering inference speeds (~360 tokens/sec on RTX 4080 Super / 3090, and ~80–90 tokens/sec on legacy mobile GPUs like the GTX 1070) while running in under 6 GB VRAM with Q4KM quantization. In our preliminary v1 release, an assistant role delimiter mismatch during training collation…

Open weights other 8.5B parameters 128,000 tokens hermes

DuoNeural/LFM2.5-8B-A1B-Hermes-Agentic-Coder-Abliterated is an apex-tier, uncensored autonomous agentic coding model trained by DuoNeural (Aura, Archon, and Jesse). Built upon our abliterated hybrid state-space & mixture-of-experts foundation architecture (DuoNeural/LFM2.5-8B-A1B-Abliterated), this model activates only 1.5 billion parameters per token out of its 8.3 billion total parameters, delivering blistering inference speeds (~380–400 tokens/sec on consumer GPUs like RTX 3090, and ~90 tokens/sec on legacy GTX 1070 laptops) while fitting in under 6 GB VRAM with Q4KM quantization. 1. Native Hermes Agentic Loop: - Explicit... deliberation before every action. - Structured... containers…

Open weights other 8.5B parameters 128,000 tokens hermes

Model · Text generation

Qwen3-8B-FP8

Qwen

Qwen3 is the latest generation of large language models in Qwen series, offering a comprehensive suite of dense and mixture-of-experts (MoE) models. Built upon extensive training, Qwen3 delivers groundbreaking advancements in reasoning, instruction-following, agent capabilities, and multilingual support, with the following key features: - Uniquely support of seamless switching between thinking mode (for complex logical reasoning, math, and coding) and non-thinking mode (for efficient, general-purpose dialogue) within single model, ensuring optimal performance across various scenarios. - Significantly enhancement in its reasoning capabilities, surpassing previous QwQ (in thinking mode) and…

Open weights apache-2.0 8.2B parameters 40,960 tokens transformers

Model · Text generation

Qwen3-8B

Qwen

Qwen3 is the latest generation of large language models in Qwen series, offering a comprehensive suite of dense and mixture-of-experts (MoE) models. Built upon extensive training, Qwen3 delivers groundbreaking advancements in reasoning, instruction-following, agent capabilities, and multilingual support, with the following key features: - Uniquely support of seamless switching between thinking mode (for complex logical reasoning, math, and coding) and non-thinking mode (for efficient, general-purpose dialogue) within single model, ensuring optimal performance across various scenarios. - Significantly enhancement in its reasoning capabilities, surpassing previous QwQ (in thinking mode) and…

Open weights apache-2.0 8.2B parameters 40,960 tokens transformers

Model · Text generation

Qwen3-8B-AWQ

Qwen

Qwen3 is the latest generation of large language models in Qwen series, offering a comprehensive suite of dense and mixture-of-experts (MoE) models. Built upon extensive training, Qwen3 delivers groundbreaking advancements in reasoning, instruction-following, agent capabilities, and multilingual support, with the following key features: - Uniquely support of seamless switching between thinking mode (for complex logical reasoning, math, and coding) and non-thinking mode (for efficient, general-purpose dialogue) within single model, ensuring optimal performance across various scenarios. - Significantly enhancement in its reasoning capabilities, surpassing previous QwQ (in thinking mode) and…

Open weights apache-2.0 8.2B parameters 40,960 tokens transformers

Model · Text generation

DeepSeek-R1-0528-Qwen3-8B

DeepSeek

The DeepSeek R1 model has undergone a minor version upgrade, with the current version being DeepSeek-R1-0528. In the latest update, DeepSeek R1 has significantly improved its depth of reasoning and inference capabilities by leveraging increased computational resources and introducing algorithmic optimization mechanisms during post-training. The model has demonstrated outstanding performance across various benchmark evaluations, including mathematics, programming, and general logic. Its overall performance is now approaching that of leading models, such as O3 and Gemini 2.5 Pro. Compared to the previous version, the upgraded model shows significant improvements in handling complex reasoning…

Open weights mit 8.2B parameters 131,072 tokens transformers