cd /news/artificial-intelligence/valen-a-multimodal-decision-model-in… · home › topics › artificial-intelligence › article
[ARTICLE · art-139346] src=github.com ↗ pub= topic=artificial-intelligence verified=true sentiment=↑ positive

Valen: A multimodal decision model inspired by Jev

Valen-Team released Valen-Preview-0923, a multimodal decision model built on a Qwen3.5-0.8B or 2B backbone that scores supplied candidates and returns decision probabilities instead of generating answer tokens. On a Sokoban puzzle, Valen-Preview-0923 solved the level in 9 decisions with 1.13 seconds of cumulative decision latency, while Qwen3.8-27B-FP8 took 198.05 seconds in thinking mode and failed in no-thinking mode. The checkpoint is available on Hugging Face alongside General 100k training and General 5k evaluation datasets, with decision confidence dropping from 91.6% on a clear image to 19.2% at the strongest Gaussian blur.

read3 min views1 publishedSep 24, 2026
Valen: A multimodal decision model inspired by Jev
Image: Michielbdejong (auto-discovered)

A multimodal decision model inspired by Jev — text, images and video in; decision probabilities out.

English · 简体中文

Intro · Demos · Model downloads · Eval results · Quick start

Valen (万澜) brings visual perception to System One decision-making. Inspired by Jev, it evaluates text, images and video against task instructions and returns probabilities over supplied candidates, giving software a structured decision interface. A Qwen3.5-0.8B or 2B backbone and a shared decision head score candidates without generating answer tokens. The repository includes the model implementation, data processing, SFT and experimental RLCD training, and inference and evaluation commands, with support for training on your own data.

Try Valen-Preview-0923 in the online demo.

Valen-Preview-0923 reads the board image and selects a movement direction at each step. On the same level, Valen-Preview-0923 solves the puzzle in 9 decisions with 1.13 seconds of cumulative decision latency. Qwen3.8-27B-FP8 takes 198.05 seconds in thinking mode and fails to solve it in no-thinking mode.

Gaussian blur reveals how Valen-Preview-0923 adapts its decisions and confidence as visual detail decreases. Decision confidence is 91.6% on the clear image and 19.2% at the strongest blur.

Four successful Valen-Preview-0923 trajectories run side by side at 1× speed with no playback acceleration. Each game takes 7–10 decisions, averaging 122–128 ms per step, and all four finish within 1.24 seconds.

Running Valen requires both the Valen checkpoint and the Qwen3.5-2B base model.

Model Role Download
Valen-Preview-0923 Valen checkpoint 🤗 Hugging Face

Datasets: General 100k training · General 5k evaluation · Sokoban training and evaluation.

Lower latency, higher accuracy. Four panels compare General accuracy, General latency, Sokoban accuracy and Sokoban latency, from left to right. Each panel shows Qwen3.5-0.8B, Qwen3.5-2B and a Valen 2B RL checkpoint. General uses 5,000 questions from multiple VQA datasets; Sokoban uses 500 single-step questions from 100 levels.

See the technical notes for training data, the Model Card and loss curves.

Install the dependencies listed in requirements, then download both the Preview checkpoint and its Qwen3.5-2B base model.

hf download Valen-Team/Valen-Preview-0923 --local-dir models/Valen-Preview-0923

hf download Qwen/Qwen3.5-2B --local-dir models/Qwen3.5-2B

python -m valen.train \
  --config configs/train/sft_warmup.json

python -m valen.inference \
  --checkpoint models/Valen-Preview-0923 \
  --data data/smoke/train.jsonl \
  --output output/sft_warmup/predictions.jsonl

python -m valen.evaluate \
  --checkpoint models/Valen-Preview-0923 \
  --data data/smoke/train.jsonl \
  --output output/sft_warmup/smoke_eval

data/smoke contains a small set of simple questions for checking that the pipeline runs correctly.

A labeled record with an image input #

Each JSONL line contains one record. The example below uses the evaluation overview figure from the repository, assuming the file is saved as example.jsonl in the repository root.

{
  "group_id": "evaluation-general-2b",
  "request": {
    "state": {
      "messages": [{
        "role": "user",
        "content": [
          {"type": "text", "text": "Compare the accuracy and the average latency per question of the 2B models on General in the figure."},
          {"type": "image_url", "image_url": {"url": "assets/figures/evaluation-results.png"}}
        ]
      }]
    },
    "questions": {
      "best_2b": {
        "type": "choice",
        "instructions": "On General, among the 2B models with average latency below 200 ms per question, which has the highest accuracy?",
        "criteria": {
          "qwen": "Qwen3.5-2B",
          "valen": "Valen-Preview-0923"
        }
      }
    }
  },
  "targets": {
    "best_2b": {"probabilities": {"qwen": 0.0, "valen": 1.0}}
  }
}

Contributions to Valen are welcome. Open an issue to report a problem, share a use case or discuss experimental results. Submit a pull request to improve the code or documentation, contribute training data or add evaluation tasks.

Scan the QR code below to join the Valen WeChat group, discuss the project and share your experiments.

The code is released under Apache 2.0. Base models and source datasets retain their respective licenses.

Built on Qwen3.5, with the decision interface inspired by TypeSafe's Jev.

── more in #artificial-intelligence 4 stories · sorted by recency
── more on @valen-team 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
→ Live at https://your-agent.zahid.host ✓
Get free account → Pricing
from €0/mo · no card required
LIVE [news/valen-a-multimodal-d…] indexed:0 read:3min 2026-09-24 · —