Text / LiquidAI

LFM2.5 VL 3B

LFM2.5 VL 3B from LiquidAI. Source-based hardware guidance from its published configuration.

EstimatedRepository opened Aug 11, 2026Source checked 9/24/2026Version: a3af5799
LOCALRENTED GPUOPEN WEIGHTS

At a glance

Parameters
3.12B
Architecture
lfm2_vl
License
lfm1.0
Software
Transformers
View the model source
MY HARDWARE

Will it run on your machine?

Save your machine to see a personalized rating and its reasoning.

Add my hardware

Ways to run it

Transformers · See official guide

Repository-specific command in publisher documentation; confirm dependencies and hardware in the source.

import torch from transformers import AutoModelForImageTextToText, AutoProcessor model_id = "LiquidAI/LFM2.5-VL-3B" model = AutoModelForImageTextToText.from_pretrained(model_id, dtype=torch.bfloat16) processor = AutoProcessor.from_pretrained(model_id) messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://placecats.com/300/200"}, {"type": "text", "text": "Describe this image."}, ], } ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) with torch.inference_mode(): output_ids = model.generate( **inputs, do_sample=True, temperature=0.2, top_k=50, repetition_penalty=1.0, max_new_tokens=256, ) generated_ids = output_ids[:, inputs["input_ids"].shape[1] :] print(processor.batch_decode(generated_ids, skip_special_tokens=True)[0])
Official instructions

Explore its uses

SAFETENSORS

Keep exploring