SAVRN
Search Contact SAVRN

Open-weight model · Text generation

LFM2.5-2.6B-CyberSec

by Convergent Intelligence reaperdoesntknow/LFM2.5-2.6B-CyberSec

An English LFM2.5 2.6B checkpoint associated with the Trendyol Cybersecurity Instruction Tuning Dataset. This repository contains both Transformers-format model files and local GGUF exports. This is a research release.

Parameters2.7B
Context131,072
Weights11.7 GB
Licenseapache-2.0
AccessOpen weights
Monthly Downloads2.6k

Runs On

What it takes to serve LFM2.5-2.6B-CyberSec (2.7B 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 5.4 GB 6.5 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 2.7 GB 3.2 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 1.3 GB 1.6 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 91a819752881.

An English LFM2.5 2.6B checkpoint associated with the Trendyol Cybersecurity Instruction Tuning Dataset. This repository contains both Transformers-format model files and local GGUF exports. This is a research release. The repository does not currently publish benchmark, baseline-comparison, or safety-evaluation results. Transformers assets include model.safetensors, configuration files, tokenizer files, and a chat template. Keeping both formats in one repository is convenient, but users should explicitly choose the path that matches their runtime. The checked configuration includes a bitsandbytes quantization block. Pin and test the exact Transformers, Accelerate, bitsandbytes, and device…

Read Convergent Intelligence's full model card

An English LFM2.5 2.6B checkpoint associated with the Trendyol Cybersecurity Instruction Tuning Dataset. This repository contains both Transformers-format model files and local GGUF exports.

This is a research release. The repository does not currently publish benchmark, baseline-comparison, or safety-evaluation results.

Lineage

Repository formats

Transformers assets include model.safetensors, configuration files, tokenizer files, and a chat template.

GGUF exports include:

  • F16
  • Q8_0
  • Q4_K_M

Keeping both formats in one repository is convenient, but users should explicitly choose the path that matches their runtime.

Transformers usage

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "reaperdoesntknow/LFM2.5-2.6B-CyberSec"

tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    device_map="auto",
)

messages = [
    {"role": "user", "content": "Explain defense in depth in plain language."}
]
inputs = tokenizer.apply_chat_template(
    messages,
    add_generation_prompt=True,
    tokenize=True,
    return_dict=True,
    return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=256)
answer = outputs[0][inputs["input_ids"].shape[-1]:]
print(tokenizer.decode(answer, skip_special_tokens=True))

The checked configuration includes a bitsandbytes quantization block. Pin and test the exact Transformers, Accelerate, bitsandbytes, and device environment you intend to use.

GGUF usage

With a recent llama.cpp build:

llama-cli \
  -hf reaperdoesntknow/LFM2.5-2.6B-CyberSec:Q4_K_M \
  --jinja

With Ollama:

ollama run hf.co/reaperdoesntknow/LFM2.5-2.6B-CyberSec:Q4_K_M

Intended use

  • Research on small-model responses to cybersecurity instruction prompts.
  • Local qualitative testing and format comparison.
  • Comparison with the unchanged LiquidAI base model.
  • Evaluation-harness and inference-runtime development.

Evaluation status

The dataset tag and exported files are observed. Improved cybersecurity ability is not established by those facts alone.

Evidence needed for a stronger release claim includes:

  • A held-out test split and unchanged-base baseline.
  • Named cybersecurity and general-capability benchmarks.
  • Reproducible harness, seed, prompts, and model revision hashes.
  • Safety, misuse, and hallucination evaluation.
  • Separate results for the Transformers model and each GGUF quantization.

Limitations and safety

  • The model can produce incorrect, outdated, insecure, or harmful instructions.
  • Cybersecurity material is inherently dual use.
  • The public files reviewed for this card do not document preprocessing, contamination checks, full training hyperparameters, or checkpoint-selection criteria.
  • Quantized builds can behave differently from the Transformers checkpoint.
  • Do not execute generated commands without review and isolation.
  • Do not use this model as the sole basis for incident response, vulnerability disclosure, access control, or other consequential decisions.

Part of the CIx cybersecurity model collection.

Configuration

Architecture
Lfm2ForCausalLM
Context length (tokens)
131,072
Layers
30
Hidden size
2,048
Feed-forward size
10,752
Attention heads
32
Key/value heads
8
Vocabulary size
128,000
Model type
lfm2
Quantization
bitsandbytes

Identity and Version

Repository
reaperdoesntknow/LFM2.5-2.6B-CyberSec
Publisher
Convergent Intelligence
Task
Text generation
Modality
Text
Library
transformers
Parameters
2.7B parameters
Languages
en
Revision
91a819752881ecb08e1cceea16538d95baf45e4a
First published
2026-08-14
Last updated
2026-09-18

Files and Weights

12 files, 11.8 GB in total. The weights are 4 files totalling 11.7 GB in gguf, safetensors.

Weights4 files · 11.7 GB
Configuration3 files · 2.4 KB
Tokenizer2 files · 17.9 MB
Documentation1 file · 4.0 KB
Other1 file · 5.4 KB
Repository1 file · 1.9 KB
Every file
FileTypeSizeSHA-256
LiquidAI_LFM2.5-2.6B__project-lfm2.5-2.6b-cybersec_1786722551.F16.ggufWeights5.4 GB b448f6f2cc2e
LiquidAI_LFM2.5-2.6B__project-lfm2.5-2.6b-cybersec_1786722551.Q4_K_M.ggufWeights1.7 GB ef6b6a1d523f
LiquidAI_LFM2.5-2.6B__project-lfm2.5-2.6b-cybersec_1786722551.Q8_0.ggufWeights2.9 GB a669174ba798
model.safetensorsWeights1.8 GB 0f4cb173ce47
config.jsonConfiguration2.0 KB
export_metadata.jsonConfiguration24 B
generation_config.jsonConfiguration351 B
README.mdDocumentation4.0 KB
chat_template.jinjaOther5.4 KB
.gitattributesRepository1.9 KB
tokenizer.jsonTokenizer17.9 MB 695be7802a0e
tokenizer_config.jsonTokenizer23.4 KB

License and Download

License
apache-2.0
Access
Open weights, no gate
Download size
11.7 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-2.6B
  • Quantized from LiquidAI/LFM2.5-2.6B
  • Trained on (disclosed) Trendyol/Trendyol-Cybersecurity-Instruction-Tuning-Dataset

Memory Requirements

PrecisionWeights in memory
As published11.7 GB
16-bit5.4 GB
8-bit2.7 GB
4-bit1.3 GB

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

Questions About LFM2.5-2.6B-CyberSec

How much GPU memory does LFM2.5-2.6B-CyberSec need?

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

What is the cheapest GPU to run LFM2.5-2.6B-CyberSec 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-2.6B-CyberSec commercially?

Yes. LFM2.5-2.6B-CyberSec 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-2.6B-CyberSec's context length?

131,072 tokens, from the maximum position embeddings in its published configuration.

Similar Models

Model · Text generation

Qwen2.5-3B-Instruct

Qwen

Qwen2.5 is the latest series of Qwen large language models. For Qwen2.5, we release a number of base language models and instruction-tuned language models ranging from 0.5 to 72 billion parameters. Qwen2.5 brings the following improvements upon Qwen2: - Significantly more knowledge and has greatly improved capabilities in coding and mathematics, thanks to our specialized expert models in these domains. - Significant improvements in instruction following, generating long texts (over 8K tokens), understanding structured data (e.g, tables), and generating structured outputs especially JSON. More resilient to the diversity of system prompts, enhancing role-play implementation and…

Open weights other 3.1B parameters 32,768 tokens transformers

A 2B-parameter Qwen3.5 fine-tune, part of the Opus-Distil line in the reaperdoesntknow open-weight portfolio. Text-generation / reasoning model, trained with Unsloth + Hugging Face TRL.

Open weights apache-2.0 2.3B parameters 262,144 tokens transformers

Model · Text generation

Qwen3.5-2B-CyberSec

Convergent Intelligence

An English Qwen3.5 2B checkpoint associated with the Trendyol Cybersecurity Instruction Tuning Dataset and exported in Transformers / Safetensors format. This release is intended for research and local experimentation. The repository does not currently publish benchmark or safety-evaluation results, so the model should not be treated as a validated cybersecurity authority. The configuration identifies a Qwen3.5 conditional-generation architecture with text and vision components. Use a recent Transformers release that supports this architecture. Dependency and device behavior can vary across Transformers versions. Pin a tested environment for reproducible use. - Research on small-model…

Open weights apache-2.0 2.3B parameters 262,144 tokens transformers

Model · Text generation

knivesysl-typed-2b

SRSWTI Inc.

local, typed decisions from qwen3.5-2b. one shared state is prefetched once, each question is isolated, every allowed answer is scored as a complete token sequence, and python returns validated choice, score, and noul results. this is an inference system, not rlcd training and not a clone of typesafe jev. it never calls typesafe. the published qwen checkpoint is unchanged; fp8 changes execution precision only. probabilities are normalized support over the candidates you provide, not calibrated correctness probabilities. unlike ordinary autoregressive json generation, the model does not write a response token by token. it scores only the values supplied by the caller. complete-sequence…

Open weights apache-2.0 2.3B parameters 262,144 tokens transformers

Model · Text generation

Kimi-K3-DSpark

RadixArk

A long-context DSpark speculator for Kimi K3. It supports context lengths of up to 1 million tokens. A DSpark speculator for the Kimi K3 target, enabling faster inference through speculative decoding. DSpark extends the DFlash parallel-draft backbone with a Markov logit-bias head and a per-position confidence head. This checkpoint was trained with SpecForge using hidden states from a live SGLang target engine. 64 query heads / 16 KV heads, and blocksize=7 acclen is SGLang's histogram-native request acceptance length, averaged within each question and then equally across questions. RULER V2 uses the 1M input configuration. Actual prompts span 1,000,432–1,047,925 tokens; partition acclen is…

Open weights 2.2B parameters 1,048,576 tokens transformers

Model · Text generation

Llama-3.2-3B-Instruct

Meta Llama

The Llama 3.2 collection of multilingual large language models (LLMs) is a collection of pretrained and instruction-tuned generative models in 1B and 3B sizes (text in/text out). The Llama 3.2 instruction-tuned text only models are optimized for multilingual dialogue use cases, including agentic retrieval and summarization tasks. They outperform many of the available open source and closed chat models on common industry benchmarks. Model Architecture: Llama 3.2 is an auto-regressive language model that uses an optimized transformer architecture. The tuned versions use supervised fine-tuning (SFT) and reinforcement learning with human feedback (RLHF) to align with human preferences for…

Access requested at publisher llama3.2 3.2B parameters transformers