Image Feature Extraction
Transformers
Safetensors
dreamsim
feature-extraction
perceptual-similarity
custom_code
Instructions to use bigshanedogg/dreamsim-ensemble with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use bigshanedogg/dreamsim-ensemble with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-feature-extraction", model="bigshanedogg/dreamsim-ensemble", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("bigshanedogg/dreamsim-ensemble", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 12,474 Bytes
f918a65 | 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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 | # DreamSim (HuggingFace format) β unofficial port.
# Copyright (c) 2026 bigshanedogg. Released under the MIT License (see LICENSE).
#
# Derivative of DreamSim (MIT, (c) 2023 Shobhita Sundaram, Netanel Tamir,
# Stephanie Fu, Richard Zhang β https://github.com/ssundaram21/dreamsim).
# The ViT backbone below is vendored from DINO (Apache-2.0, (c) Meta Platforms).
# Not an official DreamSim release.
"""Self-contained HF modeling for the DreamSim perceptual-similarity ensemble.
Vendors the DreamSim architecture (github ssundaram21/dreamsim, MIT) so the model
loads from ``model.safetensors`` via ``from_pretrained`` with no ``dreamsim`` /
``peft`` dependency. The ViT backbone below is copy-pasted from DINO
(github facebookresearch/dino, Apache-2.0), which DreamSim itself vendors.
Ensemble (all ViT-B/16, patch stride 16), features concatenated β mean/L2-normalize:
* dino_vitb16 (feat "cls") : pre-final-norm CLS token β 768
* clip_vitb16 (feat "embedding") : post-norm CLS @ proj (QuickGELU) β 512
* open_clip_vitb16 (feat "embedding") : post-norm CLS @ proj (GELU) β 512
Each backbone normalizes the [0,1] input with its own mean/std (DINOβImageNet,
CLIP/OpenCLIPβOpenAI-CLIP). LoRA is pre-merged into the weights.
"""
import math
from dataclasses import dataclass
from functools import partial
from typing import Optional
import torch
import torch.nn as nn
from transformers import PreTrainedModel
from transformers.modeling_outputs import ModelOutput
from .configuration_dreamsim import DreamSimConfig
IMAGENET_MEAN = (0.485, 0.456, 0.406)
IMAGENET_STD = (0.229, 0.224, 0.225)
OPENAI_CLIP_MEAN = (0.48145466, 0.4578275, 0.40821073)
OPENAI_CLIP_STD = (0.26862954, 0.26130258, 0.27577711)
# ββ ViT backbone β adapted (WITH MODIFICATIONS) from DINO βββββββββββββββββββββ
# https://github.com/facebookresearch/dino β’ Apache-2.0 β’ (c) Facebook, Inc.
# Modified: vendored into this module, trimmed to the inference path, and restructured
# for `transformers`. See NOTICE and LICENSE.apache-2.0.txt.
class QuickGELU(nn.Module):
def forward(self, x: torch.Tensor) -> torch.Tensor:
return x * torch.sigmoid(1.702 * x)
class Mlp(nn.Module):
def __init__(self, in_features, hidden_features=None, out_features=None, act_layer=nn.GELU, drop=0.0):
super().__init__()
out_features = out_features or in_features
hidden_features = hidden_features or in_features
self.fc1 = nn.Linear(in_features, hidden_features)
self.act = act_layer()
self.fc2 = nn.Linear(hidden_features, out_features)
self.drop = nn.Dropout(drop)
def forward(self, x):
return self.drop(self.fc2(self.drop(self.act(self.fc1(x)))))
class Attention(nn.Module):
def __init__(self, dim, num_heads=8, qkv_bias=False, qk_scale=None, attn_drop=0.0, proj_drop=0.0):
super().__init__()
self.num_heads = num_heads
head_dim = dim // num_heads
self.scale = qk_scale or head_dim**-0.5
self.qkv = nn.Linear(dim, dim * 3, bias=qkv_bias)
self.attn_drop = nn.Dropout(attn_drop)
self.proj = nn.Linear(dim, dim)
self.proj_drop = nn.Dropout(proj_drop)
def forward(self, x):
B, N, C = x.shape
qkv = self.qkv(x).reshape(B, N, 3, self.num_heads, C // self.num_heads).permute(2, 0, 3, 1, 4)
q, k, v = qkv[0], qkv[1], qkv[2]
attn = (q @ k.transpose(-2, -1)) * self.scale
attn = attn.softmax(dim=-1)
attn = self.attn_drop(attn)
x = (attn @ v).transpose(1, 2).reshape(B, N, C)
x = self.proj_drop(self.proj(x))
return x, attn
class Block(nn.Module):
def __init__(self, dim, num_heads, mlp_ratio=4.0, qkv_bias=False, qk_scale=None, drop=0.0, attn_drop=0.0,
act_layer=nn.GELU, norm_layer=nn.LayerNorm):
super().__init__()
self.norm1 = norm_layer(dim)
self.attn = Attention(dim, num_heads=num_heads, qkv_bias=qkv_bias, qk_scale=qk_scale,
attn_drop=attn_drop, proj_drop=drop)
self.drop_path = nn.Identity()
self.norm2 = norm_layer(dim)
self.mlp = Mlp(in_features=dim, hidden_features=int(dim * mlp_ratio), act_layer=act_layer, drop=drop)
def forward(self, x):
y, _ = self.attn(self.norm1(x))
x = x + self.drop_path(y)
x = x + self.drop_path(self.mlp(self.norm2(x)))
return x
class PatchEmbed(nn.Module):
def __init__(self, img_size=224, patch_size=16, in_chans=3, embed_dim=768):
super().__init__()
self.img_size = img_size
self.patch_size = patch_size
self.num_patches = (img_size // patch_size) * (img_size // patch_size)
self.proj = nn.Conv2d(in_chans, embed_dim, kernel_size=patch_size, stride=patch_size)
def forward(self, x):
return self.proj(x).flatten(2).transpose(1, 2)
class VisionTransformer(nn.Module):
def __init__(self, img_size=224, patch_size=16, in_chans=3, embed_dim=768, depth=12, num_heads=12,
mlp_ratio=4.0, qkv_bias=True, norm_layer=None, act_layer=nn.GELU):
super().__init__()
norm_layer = norm_layer or partial(nn.LayerNorm, eps=1e-6)
self.num_features = self.embed_dim = embed_dim
self.patch_embed = PatchEmbed(img_size=img_size, patch_size=patch_size, in_chans=in_chans, embed_dim=embed_dim)
num_patches = self.patch_embed.num_patches
self.cls_token = nn.Parameter(torch.zeros(1, 1, embed_dim))
self.pos_embed = nn.Parameter(torch.zeros(1, num_patches + 1, embed_dim))
self.pos_drop = nn.Dropout(p=0.0)
self.blocks = nn.ModuleList([
Block(dim=embed_dim, num_heads=num_heads, mlp_ratio=mlp_ratio, qkv_bias=qkv_bias,
act_layer=act_layer, norm_layer=norm_layer)
for _ in range(depth)
])
self.norm = norm_layer(embed_dim)
self.head = nn.Identity()
def interpolate_pos_encoding(self, x, w, h):
npatch = x.shape[1] - 1
N = self.pos_embed.shape[1] - 1
if npatch == N and w == h:
return self.pos_embed
class_pos_embed = self.pos_embed[:, 0]
patch_pos_embed = self.pos_embed[:, 1:]
dim = x.shape[-1]
w0, h0 = w // self.patch_embed.patch_size + 0.1, h // self.patch_embed.patch_size + 0.1
patch_pos_embed = nn.functional.interpolate(
patch_pos_embed.reshape(1, int(math.sqrt(N)), int(math.sqrt(N)), dim).permute(0, 3, 1, 2),
scale_factor=(w0 / math.sqrt(N), h0 / math.sqrt(N)), mode="bicubic",
)
patch_pos_embed = patch_pos_embed.permute(0, 2, 3, 1).view(1, -1, dim)
return torch.cat((class_pos_embed.unsqueeze(0), patch_pos_embed), dim=1)
def prepare_tokens(self, x):
B, nc, w, h = x.shape
x = self.patch_embed(x)
cls_tokens = self.cls_token.expand(B, -1, -1)
x = torch.cat((cls_tokens, x), dim=1)
x = x + self.interpolate_pos_encoding(x, w, h)
return self.pos_drop(x)
def forward(self, x, apply_norm=True):
x = self.prepare_tokens(x)
for blk in self.blocks:
x = blk(x)
if apply_norm:
x = self.norm(x)
return x[:, 0]
class DINOHead(nn.Module):
# Present to receive dino's projection weights (unused for the ensemble's cls feature).
def __init__(self, in_dim, out_dim, hidden_dim=2048, bottleneck_dim=256):
super().__init__()
self.mlp = nn.Sequential(
nn.Linear(in_dim, hidden_dim), nn.GELU(),
nn.Linear(hidden_dim, hidden_dim), nn.GELU(),
nn.Linear(hidden_dim, bottleneck_dim),
)
self.last_layer = nn.utils.weight_norm(nn.Linear(bottleneck_dim, out_dim, bias=False))
def forward(self, x):
x = nn.functional.normalize(self.mlp(x), dim=-1, p=2)
return self.last_layer(x)
def _vit_base(act_layer=nn.GELU, norm_eps=1e-6):
return VisionTransformer(
patch_size=16, embed_dim=768, depth=12, num_heads=12, mlp_ratio=4, qkv_bias=True,
norm_layer=partial(nn.LayerNorm, eps=norm_eps), act_layer=act_layer,
)
# ββ DreamSim ensemble βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class _Extractor(nn.Module):
"""One backbone (``model``) + its projection (``proj``). Matches the upstream
ViTExtractor module names so the merged safetensors load 1:1."""
def __init__(self, model_type: str):
super().__init__()
if model_type == "dino_vitb16":
self.model = _vit_base(act_layer=nn.GELU, norm_eps=1e-6)
self.proj = DINOHead(768, 2048)
elif model_type in ("clip_vitb16", "open_clip_vitb16"):
_act = QuickGELU if model_type == "clip_vitb16" else nn.GELU
self.model = _vit_base(act_layer=_act, norm_eps=1e-5)
self.model.pos_drop = nn.LayerNorm(self.model.embed_dim, eps=1e-5) # loaders swap DropoutβLayerNorm
self.proj = nn.Parameter(torch.zeros(768, 512)) # clip/open_clip embedding projection (raw tensor)
else:
raise ValueError(f"unsupported DreamSim backbone: {model_type}")
class DreamSimOutput(ModelOutput):
embeddings: Optional[torch.Tensor] = None
last_hidden_states: Optional[torch.Tensor] = None
DreamSimOutput = dataclass(DreamSimOutput)
class DreamSimModel(PreTrainedModel):
config_class = DreamSimConfig
main_input_name = "pixel_values"
def __init__(self, config: DreamSimConfig):
super().__init__(config)
self._model_types = config.model_types.split(",")
self._feat_types = config.feat_types.split(",")
self.normalize_embeds = config.normalize_embeds
self.extractor_list = nn.ModuleList([_Extractor(_m) for _m in self._model_types])
self.mlp = nn.Identity() # ensemble uses LoRA β Identity MLP head
# Per-backbone input normalization stats β plain Python, NOT buffers. Non-persistent
# buffers are left uninitialized by meta-device from_pretrained (transformers 5.x),
# which silently corrupts normalization; build the tensors inline in _extract_one.
self._pixel_mean = [OPENAI_CLIP_MEAN if "clip" in _m else IMAGENET_MEAN for _m in self._model_types]
self._pixel_std = [OPENAI_CLIP_STD if "clip" in _m else IMAGENET_STD for _m in self._model_types]
self.post_init()
def _extract_one(self, index: int, pixel_values: torch.Tensor) -> torch.Tensor:
_extractor = self.extractor_list[index]
_feat_type = self._feat_types[index]
_mean = torch.tensor(self._pixel_mean[index], device=pixel_values.device, dtype=pixel_values.dtype).view(1, 3, 1, 1)
_std = torch.tensor(self._pixel_std[index], device=pixel_values.device, dtype=pixel_values.dtype).view(1, 3, 1, 1)
_x = (pixel_values - _mean) / _std
if _feat_type == "cls":
# DINO: CLS token of the last block's output (pre-final-norm).
return _extractor.model(_x, apply_norm=False)
# CLIP / OpenCLIP: post-norm CLS token projected by ``proj``.
return _extractor.model(_x, apply_norm=True) @ _extractor.proj
def forward(self, pixel_values: torch.Tensor, **kwargs) -> DreamSimOutput:
_feats = [self._extract_one(_i, pixel_values) for _i in range(len(self.extractor_list))]
_concat = torch.cat(_feats, dim=-1)
_embeddings = self.mlp(_concat)
if self.normalize_embeds:
_embeddings = self._normalize_embedding(_embeddings)
return DreamSimOutput(embeddings=_embeddings, last_hidden_states=_concat)
@staticmethod
def _normalize_embedding(embed: torch.Tensor) -> torch.Tensor:
# Subtract per-sample mean, divide by per-sample L2 norm (upstream normalize_embeds).
embed = (embed.T - torch.mean(embed, dim=1)).T
return (embed.T / torch.norm(embed, dim=1)).T
@torch.no_grad()
def compute_distance(self, pixel_values_a: torch.Tensor, pixel_values_b: torch.Tensor) -> torch.Tensor:
"""Perceptual distance ``1 - cos`` between two preprocessed image batches."""
_a = self.forward(pixel_values_a).embeddings
_b = self.forward(pixel_values_b).embeddings
return 1 - nn.functional.cosine_similarity(_a, _b, dim=-1)
|