File size: 6,611 Bytes
deebb1a 68ba120 7850297 68ba120 deebb1a 7850297 68ba120 7850297 63a17e7 deebb1a 68ba120 deebb1a a8383df 68ba120 deebb1a f195e88 63a17e7 deebb1a 63a17e7 deebb1a 68ba120 85ae011 deebb1a 68ba120 deebb1a 68ba120 deebb1a 63a17e7 deebb1a 63a17e7 deebb1a 63a17e7 deebb1a 63a17e7 deebb1a 68ba120 63a17e7 deebb1a 7850297 deebb1a 68ba120 deebb1a 68ba120 deebb1a 63a17e7 7850297 f195e88 63a17e7 f195e88 63a17e7 f195e88 63a17e7 deebb1a 68ba120 7850297 68ba120 85ae011 f195e88 7850297 68ba120 deebb1a f195e88 68ba120 a8383df f195e88 deebb1a 7850297 68ba120 7850297 f195e88 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | ---
license: mit
language:
- en
tags:
- referring-image-segmentation
- reranking
- failure-detection
- multi-scale
- vision-language
- pytorch
pipeline_tag: image-segmentation
base_model:
- OpenGVLab/BEiT-3
- microsoft/swin-large-patch4-window12-384-22k
library_name: pytorch
datasets:
- refcoco
- refcocog
arxiv: 2606.22546
---
# Venice-H1: Failure-Aware Query Re-Ranking for Referring Image Segmentation
[](https://arxiv.org/abs/2606.22546)
[](https://github.com/odaxai/Venice-H1)
[](https://opensource.org/licenses/MIT)
**NicolΓ² Savioli, Ph.D.** β OdaxAI Research
nicolo.savioli@odaxai.com Β· [odaxai.com](https://odaxai.com)
---
## Architecture Overview

*Venice-H1 pipeline. A frozen DeRIS backbone generates N=10 candidate masks. Multi-scale grid signatures encode spatial quality. The Failure Re-Ranker gates intervention: it only overrides Query-0 when confident the default choice is wrong.*
---
## The Failure-Case Bottleneck
| | |
|---|---|
|  |  |
| *7β18% of samples generate 40β68% of total error* | *Failure cases form a "triangle of opportunity"* |
---
## Multi-Scale Grid Signatures

*Compact 675-dim spatial descriptors pooled at 4Γ4, 8Γ8, 16Γ16 grids per candidate mask.*

*Multi-scale grid cells inspired by entorhinal cortex representations.*
---
## Model Description
Venice-H1 is a lightweight, backbone-decoupled re-ranking module for Referring Image Segmentation (RIS). It detects when the default query selection fails and selects a better alternative using:
- **Multi-Scale Grid Signatures**: 4Γ4, 8Γ8, 16Γ16 spatial pooling β 675-dim descriptors
- **Failure Gate**: binary classifier predicting whether Query 0 is suboptimal
- **Gain Predictor**: IoU-regression head estimating improvement per alternative query
- **Backbone-decoupled**: works on cached features, no retraining of DeRIS required
**Architecture**: 3-layer pre-norm Transformer encoder, 8 heads, hidden_dim=512
**Parameters**: 11,296,258 (11.3M) β matches paper exactly
---
## Results
### On failure cases (where Venice-H1 intervenes)

*Positive Ξ across all 8 evaluation splits.*
| Metric | Value |
|--------|-------|
| Parameters | **11,296,258** |
| **Ξ_fail (mIoU on failures)** | **+1.824** |
| **AUC (failure detection)** | **0.778** |
| **Ξ_full (overall mIoU)** | **+0.039** |
| Q0 mIoU | 86.469 |
| Selected mIoU | 86.509 |
| Oracle mIoU | 89.691 |
| Harmful-switch rate | < 0.6% |
### Failure Gate Analysis
| | |
|---|---|
|  |  |
| *ROC curves across splits. AUC 0.78β0.82* | *Coverage-risk trade-off at different Ο* |
---
## Qualitative Results

*Re-ranking on RefCOCO val. Each row: input, ground truth, default query (red, fails), Venice-H1 corrected selection (blue). Venice-H1 recovers IoU > 84% in all cases.*
---
## Ablation Study

| Configuration | Ξ_fail | Gate AUC |
|---|---|---|
| BASE only (no grid) | +1.01 | 0.812 |
| 4Γ4 only | +1.01 | 0.821 |
| 8Γ8 only | +0.87 | 0.790 |
| 16Γ16 only | +1.00 | 0.828 |
| **BASE + all grids (ours)** | **+1.22** | **0.807** |
---
## Medical Cross-Domain Transfer

*Zero-shot transfer to MS-CXR (+1.16 mIoU) and M3D-RefSeg-2D (+0.51 mIoU) without fine-tuning.*
---
## External Dependencies
| Component | Model | Paper |
|-----------|-------|-------|
| Backbone | DeRIS-L | Dai et al. (2025) |
| Visual Encoder | Swin-Large | Liu et al. (2021) |
| Language Encoder | BEiT-3 | Wang et al. (2023) |
| Mask Generator | Mask2Former | Cheng et al. (2022) |
Venice-H1 does **not** include these weights. You need a running DeRIS-L instance to extract features.
---
## Quick Start
```python
import torch
from huggingface_hub import hf_hub_download
ckpt_path = hf_hub_download(repo_id="OdaxAI/venice-h1", filename="venice_h1_deris_l.pt")
ckpt = torch.load(ckpt_path, map_location="cpu", weights_only=False)
print("Config:", ckpt["config"])
print("Metrics:", ckpt["metrics"])
print("Parameters:", sum(v.numel() for v in ckpt["model"].values() if hasattr(v, "numel")))
```
**Reproduce paper results** (no dataset needed):
```bash
git clone https://github.com/odaxai/Venice-H1.git
cd Venice-H1 && pip install -r requirements.txt && pip install -e .
python reproduce_results.py --verify_only
```
```
ββ Architecture Verification βββββββββββββββββββ
Parameters : 11,296,258 β MATCH
ββ Paper Cross-Check (RefCOCO val) βββββββββββββ
β delta_fail : 1.8244 (paper: 1.824)
β auc_fail : 0.7776 (paper: 0.778)
β delta_full : 0.0392 (paper: 0.039)
```
---
## Files in Repository
| File | Description |
|------|-------------|
| `venice_h1_deris_l.pt` | **Trained checkpoint** β 11.3M params, DeRIS-L backbone |
| `venice_h1_deris_l_metrics.json` | Full evaluation metrics |
| `config.yaml` | Training hyperparameters |
| `venice_h1/` | Python package (model code) |
| `train.py` | Training script |
| `evaluate.py` | Evaluation script |
| `reproduce_results.py` | One-command paper reproduction |
| `scripts/extract_features.py` | Feature extraction from DeRIS-L |
---
## Training Details
| Parameter | Value |
|-----------|-------|
| Optimizer | AdamW |
| Learning rate | 5e-4 |
| Weight decay | 1e-4 |
| Batch size | 512 |
| Epochs | 20 |
| Scheduler | Cosine + 3 epoch warmup |
| Loss: L_gate | Focal BCE (Ξ³=2.0) |
| Loss: L_gain | Smooth-L1 (Ξ»=5.0) |
| Mixed precision | FP16 |
| Seed | 42 |
---
## Citation
```bibtex
@article{savioli2026veniceh1,
title = {Venice-H1: Failure-Aware Query Re-Ranking with Multi-Scale Grid Signatures
for Referring Image Segmentation},
author = {Savioli, Nicol\`{o}},
journal = {arXiv preprint arXiv:2606.22546},
year = {2026},
note = {OdaxAI Research},
}
```
---
## License
MIT License. Β© 2026 OdaxAI Research. All research conducted by NicolΓ² Savioli, Ph.D.
|