File size: 9,693 Bytes
553fbf7 2ff5c54 691fc84 553fbf7 2ff5c54 553fbf7 2ff5c54 691fc84 2ff5c54 553fbf7 691fc84 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 553fbf7 2ff5c54 | 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 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | """
MINDI 1.5 Vision-Coder β Vision Encoder
Uses CLIP ViT-L/14 (frozen) to encode UI screenshots into 256 visual
tokens projected from 1024 β 3584 to match the Qwen hidden dimension.
Output shape: (batch, 256, 3584).
"""
from __future__ import annotations
from pathlib import Path
from typing import Optional
import torch
import torch.nn as nn
from PIL import Image
from transformers import CLIPImageProcessor, CLIPVisionModel
class VisionEncoder(nn.Module):
"""
CLIP ViT-L/14 vision encoder for MINDI 1.5.
Extracts ALL 256 patch tokens (excludes CLS) from CLIP and
projects them from 1024 β 3584 to match Qwen2.5 hidden_size.
The CLIP backbone is frozen; only the projection layer trains.
"""
NUM_PATCHES: int = 256 # ViT-L/14: 16Γ16 patches from 224Γ224
def __init__(
self,
model_name: str = "openai/clip-vit-large-patch14",
llm_hidden_size: int = 3584,
device: Optional[str] = None,
cache_dir: Optional[Path] = None,
torch_dtype: torch.dtype = torch.float32,
) -> None:
"""
Initialize the vision encoder.
Args:
model_name: HuggingFace CLIP vision model identifier.
llm_hidden_size: Target projection dimension (must match LLM hidden_size).
device: Target device ('cuda', 'cpu', or None for auto).
cache_dir: Local directory for model weight cache.
torch_dtype: Data type for CLIP weights (projection always float32).
"""
super().__init__()
self.model_name = model_name
self.llm_hidden_size = llm_hidden_size
self.device = device or ("cuda" if torch.cuda.is_available() else "cpu")
self.cache_dir = Path(cache_dir) if cache_dir else Path("./checkpoints/vision")
self.cache_dir.mkdir(parents=True, exist_ok=True)
# Load CLIP vision model (no text tower) and image processor
print(f"[VisionEncoder] Loading {model_name} ...")
self.clip = CLIPVisionModel.from_pretrained(
model_name,
cache_dir=str(self.cache_dir),
torch_dtype=torch_dtype,
)
self.image_processor = CLIPImageProcessor.from_pretrained(
model_name,
cache_dir=str(self.cache_dir),
)
# Freeze entire CLIP backbone
for param in self.clip.parameters():
param.requires_grad = False
self.clip.eval()
# Trainable projection: CLIP hidden (1024) β LLM hidden (4096)
clip_hidden_size: int = self.clip.config.hidden_size # 1024
self.projection = nn.Linear(clip_hidden_size, self.llm_hidden_size)
self.to(self.device)
trainable = sum(p.numel() for p in self.parameters() if p.requires_grad)
total = sum(p.numel() for p in self.parameters())
print(f"[VisionEncoder] Loaded β {clip_hidden_size} β {self.llm_hidden_size}")
print(f" Trainable: {trainable:,} | Total: {total:,}")
def encode_image(self, image: Optional[Image.Image]) -> Optional[torch.Tensor]:
"""
Encode a single PIL image into projected patch token embeddings.
Args:
image: A PIL Image (RGB), or None.
Returns:
Tensor of shape (1, 256, 4096) or None if input is None.
"""
if image is None:
return None
inputs = self.image_processor(images=image, return_tensors="pt")
pixel_values = inputs["pixel_values"].to(device=self.device, dtype=self.clip.dtype)
with torch.no_grad():
vision_outputs = self.clip(pixel_values=pixel_values)
# last_hidden_state: (batch, 257, 1024) β 1 CLS + 256 patches
patch_tokens = vision_outputs.last_hidden_state[:, 1:, :] # (1, 256, 1024)
# Project into LLM embedding space (trainable)
projected = self.projection(patch_tokens.float()) # (1, 256, 4096)
return projected
def encode_batch(self, images: list[Optional[Image.Image]]) -> list[Optional[torch.Tensor]]:
"""
Encode a batch of images. None entries pass through as None.
Args:
images: List of PIL Images or Nones.
Returns:
List of tensors (1, 256, 4096) or Nones matching input order.
"""
results: list[Optional[torch.Tensor]] = [None] * len(images)
valid_indices = [i for i, img in enumerate(images) if img is not None]
if not valid_indices:
return results
valid_images = [images[i] for i in valid_indices]
inputs = self.image_processor(images=valid_images, return_tensors="pt")
pixel_values = inputs["pixel_values"].to(device=self.device, dtype=self.clip.dtype)
with torch.no_grad():
vision_outputs = self.clip(pixel_values=pixel_values)
patch_tokens = vision_outputs.last_hidden_state[:, 1:, :] # (N, 256, 1024)
projected = self.projection(patch_tokens.float()) # (N, 256, 4096)
for batch_idx, orig_idx in enumerate(valid_indices):
results[orig_idx] = projected[batch_idx].unsqueeze(0) # (1, 256, 4096)
return results
def encode_screenshot(self, screenshot_path: Path) -> Optional[torch.Tensor]:
"""
Load a screenshot from disk and encode it.
Args:
screenshot_path: Path to image file.
Returns:
Tensor of shape (1, 256, 4096).
"""
path = Path(screenshot_path)
if not path.exists():
raise FileNotFoundError(f"Screenshot not found: {path}")
image = Image.open(path).convert("RGB")
return self.encode_image(image)
def save_projection(self, save_dir: Optional[Path] = None) -> Path:
"""
Save only the trainable projection weights.
Args:
save_dir: Directory to save to. Defaults to cache_dir/projection.
Returns:
Path where weights were saved.
"""
save_path = Path(save_dir) if save_dir else self.cache_dir / "projection"
save_path.mkdir(parents=True, exist_ok=True)
torch.save(self.projection.state_dict(), save_path / "projection.pt")
print(f"[VisionEncoder] Projection saved to {save_path}")
return save_path
def load_projection(self, load_dir: Path) -> None:
"""
Load projection weights from disk.
Args:
load_dir: Directory containing projection.pt.
"""
weights_path = Path(load_dir) / "projection.pt"
if not weights_path.exists():
raise FileNotFoundError(f"Projection weights not found: {weights_path}")
state_dict = torch.load(weights_path, map_location=self.device, weights_only=True)
self.projection.load_state_dict(state_dict)
print(f"[VisionEncoder] Projection loaded from {load_dir}")
def get_num_visual_tokens(self) -> int:
"""Return the number of visual tokens produced per image (256)."""
return self.NUM_PATCHES
# ββ Test block ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if __name__ == "__main__":
print("=" * 60)
print(" MINDI 1.5 β Vision Encoder Test")
print("=" * 60)
print()
# 1. Initialize encoder
encoder = VisionEncoder(
model_name="openai/clip-vit-large-patch14",
llm_hidden_size=4096,
)
# 2. Create a dummy image (224Γ224 RGB)
dummy_image = Image.new("RGB", (224, 224), color=(128, 128, 128))
# 3. Encode single image
print("\n Encoding single image ...")
output = encoder.encode_image(dummy_image)
assert output is not None
print(f" Output shape: {output.shape}")
assert output.shape == (1, 256, 4096), f"Expected (1, 256, 4096), got {output.shape}"
# 4. Encode None β should return None
none_output = encoder.encode_image(None)
assert none_output is None, "Expected None for None input"
print(" None input β None output β")
# 5. Encode batch (mixed with None)
print("\n Encoding batch [image, None, image] ...")
batch_results = encoder.encode_batch([dummy_image, None, dummy_image])
assert batch_results[0] is not None and batch_results[0].shape == (1, 256, 4096)
assert batch_results[1] is None
assert batch_results[2] is not None and batch_results[2].shape == (1, 256, 4096)
print(f" Batch results: [{batch_results[0].shape}, None, {batch_results[2].shape}]")
# 6. Check trainable params (only projection should train)
trainable = sum(p.numel() for p in encoder.parameters() if p.requires_grad)
frozen = sum(p.numel() for p in encoder.parameters() if not p.requires_grad)
print(f"\n Trainable: {trainable:,}")
print(f" Frozen: {frozen:,}")
assert trainable == 1024 * 4096 + 4096, f"Unexpected trainable count: {trainable}"
assert frozen > trainable, "CLIP backbone should be frozen"
# 7. Save and reload projection
print("\n Testing save/load projection ...")
import tempfile
with tempfile.TemporaryDirectory() as tmp:
save_path = encoder.save_projection(Path(tmp))
old_weight = encoder.projection.weight.clone()
# Perturb weights
encoder.projection.weight.data.fill_(0.0)
assert not torch.equal(encoder.projection.weight, old_weight)
# Reload
encoder.load_projection(Path(tmp))
assert torch.equal(encoder.projection.weight, old_weight), "Weights not restored!"
print(" Save/load round-trip β")
print("\n β All vision encoder tests passed!")
print("=" * 60)
|