model release

UAE's TIIUAE releases Falcon Perception: 0.6B early-fusion model for open-vocabulary grounding

TL;DR

TIIUAE has released Falcon Perception, a 0.6B-parameter early-fusion Transformer that combines image patches and text in a single sequence for open-vocabulary object grounding and segmentation. The model achieves 68.0 Macro-F1 on SA-Co (vs. 62.3 for SAM 3) and introduces PBench, a diagnostic benchmark that isolates performance across five capability levels. TIIUAE also released Falcon OCR, a 0.3B model reaching 80.3 on olmOCR and 88.6 on OmniDocBench.

3 min read
0

Falcon Perception: Single-Backbone Approach to Vision-Language Grounding

TIIUAE has released Falcon Perception, a 0.6B-parameter early-fusion Transformer designed for open-vocabulary object grounding and segmentation from natural language prompts. The architecture processes image patches and text tokens in a unified sequence using a hybrid attention mask, departing from the standard modular pipeline approach that separates vision encoders from language fusion.

Architecture: Early Fusion with Hybrid Attention

Falcon Perception replaces traditional multi-stage pipelines (frozen vision backbone → separate fusion decoder → post-processing) with a single Transformer backbone. The model uses a hybrid attention pattern: image tokens attend bidirectionally to all image tokens to build global visual context, while text and task tokens attend causally to everything before them. This allows the same backbone to function as both a bidirectional visual encoder and an autoregressive predictor.

Output generation follows a deliberate three-step "Chain-of-Perception" structure:

  1. Coordinate token: Predicts instance center
  2. Size token: Predicts spatial extent
  3. Segmentation token: Produces full-resolution binary mask via dot product with upsampled image features

This coarse-to-fine decomposition avoids expensive token-by-token mask generation while maintaining variable-length instance prediction. Coordinate and size heads use Fourier feature encoding to overcome spectral bias in neural networks. Segmentation heads operate as lightweight dot-product layers rather than separate mask-query machinery.

Performance and Benchmarking

On the SA-Co benchmark, Falcon Perception reaches 68.0 Macro-F1, outperforming SAM 3's 62.3. However, the model shows a presence calibration gap (MCC 0.64 vs. 0.82), meaning it struggles to reliably predict when objects are absent.

TIIUAE introduced PBench, a diagnostic benchmark that disaggregates performance by five capability levels:

  • L0: Simple object recognition
  • L1: Attributes and subtypes
  • L2: OCR-guided identification
  • L3: Spatial understanding
  • L4: Relations and interactions
  • Dense Crowdedness: Stress test with hundreds of instances per image

This structure isolates failure modes and guides future development priorities.

Training Methodology

Falcon Perception was trained on a 54M-image dataset with 195M positive expressions and 488M hard negatives. The training pipeline includes:

  • Multi-teacher distillation: Initialized from DINOv3 (ViT-H) and SigLIP2 to provide strong visual and language-aligned foundations
  • Hierarchical image clustering: Via DINOv3 embeddings for uniform concept coverage
  • VLM-driven annotation: Generated dense descriptions categorized by PBench complexity levels (60% basic, 40% advanced)
  • Negative mining: Created semantic, visual, and fine-grained hard negatives
  • Ensemble consensus: SAM 3, Qwen3-VL-30B, and Moondream3 must agree (IoU > 0.8) for automatic acceptance
  • Strict 1:1 positive-to-negative ratio: Prioritizes presence calibration as a first-class training objective

Falcon OCR

TIIUAE simultaneously released Falcon OCR, a 0.3B-parameter model achieving 80.3 on olmOCR and 88.6 on OmniDocBench with the highest throughput among open-source OCR models.

What This Means

Falcon Perception demonstrates that unified, early-fusion architectures can compete with or exceed modular vision-language pipelines while remaining interpretable and scalable. The 0.6B parameter count positions it for edge deployment and inference speed advantages. The primary limitation—presence calibration—is well-diagnosed and addressable with targeted data and training techniques. PBench's capability-level breakdown provides a reproducible methodology for future vision-language model evaluation beyond saturated benchmarks like RefCOCO. The simultaneous OCR release and emphasis on open-vocabulary grounding signal TIIUAE's focus on practical industrial deployment of perception systems.

Related Articles

model release

Alibaba Releases Qwen3.8 Open-Weight Models Under Apache 2.0, Including 27B Multimodal Model with 262K Native Context

Alibaba's Qwen team has released open weights for Qwen3.8, including a 27-billion-parameter multimodal dense model with 262,000 tokens of native context. The models ship under the Apache 2.0 license and are available on Hugging Face and ModelScope.

model release

Alibaba Releases Qwen3.8-27B-FP8, a 27B Dense Vision-Language Model with 1M-Token Context

Alibaba's Qwen team has released FP8-quantized weights for Qwen3.8-27B, a 27-billion-parameter dense vision-language model with native 262,144-token context extensible to 1 million tokens. The model claims gains over its Qwen3.6 and Qwen3.7 predecessors on coding, agentic, and multimodal benchmarks.

model release

Alibaba Releases Qwen3.8-27B, a Dense Vision-Language Model with 1M-Token Context

Alibaba's Qwen team has released Qwen3.8-27B, a 27-billion-parameter dense vision-language model with 262,144-token native context extensible to 1 million tokens. The model shows gains over Qwen3.6-27B and Qwen3.7-Plus across coding, agentic, and multimodal benchmarks, according to Alibaba.

model release

Zhipu AI Releases GLM-5.3, Claims It's the Strongest Open-Weights Coding Model

Zhipu AI has released GLM-5.3, a coding-focused model built on the same base as GLM-5.2 with additional post-training. The company claims it's the strongest open-weights coding model available, with gains concentrated in agentic and cybersecurity tasks, though independent benchmarks are not yet published.

Comments

Loading...