File size: 16,835 Bytes
2a0b1b7 | 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 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 | # ============================================================================
# BENCHMARK: geolip-captionbert-8192 vs Individual BERTs
#
# Loads model from: AbstractPhil/geolip-captionbert-8192
#
# Tests:
# 1. STS-B β Spearman correlation with human similarity judgments
# 2. SICK-R β Compositional/syntactic similarity
# 3. MRPC β Paraphrase detection (cosine threshold)
# 4. Caption retrieval β self-retrieval on CC12M subset
#
# Compares against all 5 consensus teachers + sentence-transformers baseline
# ============================================================================
import os
import json
import gc
import torch
import torch.nn as nn
import torch.nn.functional as F
import numpy as np
from scipy.stats import spearmanr, pearsonr
from sklearn.metrics import accuracy_score, f1_score
from tqdm import tqdm
DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
print("=" * 65)
print("BENCHMARK: geolip-captionbert-8192")
print("=" * 65)
print(f" Device: {DEVICE}")
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# MODEL: CaptionEncoder (must match HF repo)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class CaptionEncoder(nn.Module):
def __init__(self, vocab_size=30522, max_len=8192, d_model=384,
n_heads=6, n_layers=6, d_ff=1536, output_dim=768,
dropout=0.1, pad_token_id=0):
super().__init__()
self.pad_token_id = pad_token_id
self.d_model = d_model
self.max_len = max_len
self.token_emb = nn.Embedding(vocab_size, d_model, padding_idx=pad_token_id)
self.pos_emb = nn.Embedding(max_len, d_model)
self.emb_norm = nn.LayerNorm(d_model)
self.emb_drop = nn.Dropout(dropout)
encoder_layer = nn.TransformerEncoderLayer(
d_model=d_model, nhead=n_heads, dim_feedforward=d_ff,
dropout=dropout, activation="gelu", batch_first=True,
norm_first=True)
self.encoder = nn.TransformerEncoder(encoder_layer, num_layers=n_layers)
self.output_proj = nn.Sequential(
nn.Linear(d_model, d_model), nn.GELU(),
nn.LayerNorm(d_model), nn.Linear(d_model, output_dim))
def forward(self, input_ids, attention_mask=None):
B, L = input_ids.shape
positions = torch.arange(L, device=input_ids.device).unsqueeze(0)
x = self.token_emb(input_ids) + self.pos_emb(positions)
x = self.emb_drop(self.emb_norm(x))
if attention_mask is not None:
kpm = ~attention_mask.bool()
else:
kpm = (input_ids == self.pad_token_id)
x = self.encoder(x, src_key_padding_mask=kpm)
if attention_mask is not None:
mask = attention_mask.unsqueeze(-1).float()
else:
mask = (~kpm).unsqueeze(-1).float()
pooled = (x * mask).sum(1) / mask.sum(1).clamp(min=1)
return F.normalize(self.output_proj(pooled), dim=-1)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# LOAD BENCHMARKS
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def load_stsb():
from datasets import load_dataset
ds = load_dataset("mteb/stsbenchmark-sts", split="test")
pairs = [{"sent1": r["sentence1"], "sent2": r["sentence2"], "score": r["score"]} for r in ds]
print(f" STS-B test: {len(pairs)} pairs")
return pairs
def load_sick():
from datasets import load_dataset
ds = load_dataset("mteb/sickr-sts", split="test")
pairs = [{"sent1": r["sentence1"], "sent2": r["sentence2"], "score": r["score"]} for r in ds]
print(f" SICK-R test: {len(pairs)} pairs")
return pairs
def load_mrpc():
from datasets import load_dataset
ds = load_dataset("glue", "mrpc", split="test")
pairs = [{"sent1": r["sentence1"], "sent2": r["sentence2"], "label": r["label"]} for r in ds]
print(f" MRPC test: {len(pairs)} pairs")
return pairs
def load_caption_retrieval(n=5000):
from datasets import load_dataset
print(f" Loading CC12M captions for retrieval (n={n})...")
ds = load_dataset("CaptionEmporium/conceptual-captions-cc12m-llavanext",
split="train", streaming=True)
captions = []
for row in ds:
cap = row.get("caption_llava", "")
if isinstance(cap, str) and len(cap) > 50:
captions.append(cap)
if len(captions) >= n:
break
# Use last 1000 as query, rest as corpus
queries = captions[-1000:]
corpus = captions[:-1000]
print(f" Corpus: {len(corpus)}, Queries: {len(queries)}")
return corpus, queries
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ENCODING
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@torch.no_grad()
def encode_hf(model, tokenizer, texts, batch_size=128, max_len=512):
all_emb = []
for i in range(0, len(texts), batch_size):
batch = texts[i:i+batch_size]
inputs = tokenizer(batch, max_length=max_len, padding=True,
truncation=True, return_tensors="pt").to(DEVICE)
out = model(**inputs)
mask = inputs.attention_mask.unsqueeze(-1).float()
pooled = (out.last_hidden_state * mask).sum(1) / mask.sum(1).clamp(min=1)
all_emb.append(F.normalize(pooled, dim=-1).cpu())
return torch.cat(all_emb)
@torch.no_grad()
def encode_student(model, tokenizer, texts, batch_size=128, max_len=512):
all_emb = []
for i in range(0, len(texts), batch_size):
batch = texts[i:i+batch_size]
inputs = tokenizer(batch, max_length=max_len, padding="max_length",
truncation=True, return_tensors="pt").to(DEVICE)
emb = model(inputs["input_ids"], inputs["attention_mask"])
all_emb.append(emb.cpu())
return torch.cat(all_emb)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# EVALUATION METRICS
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def eval_sts(pairs, emb1, emb2):
cosines = F.cosine_similarity(emb1, emb2, dim=-1).numpy()
gold = np.array([p["score"] for p in pairs])
return {
"spearman": float(spearmanr(cosines, gold).statistic),
"pearson": float(pearsonr(cosines, gold).statistic),
"cos_mean": float(cosines.mean()),
}
def eval_mrpc(pairs, emb1, emb2):
cosines = F.cosine_similarity(emb1, emb2, dim=-1).numpy()
labels = np.array([p["label"] for p in pairs])
# Find optimal threshold
best_f1, best_thresh = 0, 0.5
for thresh in np.arange(0.5, 1.0, 0.01):
preds = (cosines > thresh).astype(int)
f1 = f1_score(labels, preds, zero_division=0)
if f1 > best_f1:
best_f1 = f1
best_thresh = thresh
preds = (cosines > best_thresh).astype(int)
return {
"f1": float(best_f1),
"accuracy": float(accuracy_score(labels, preds)),
"threshold": float(best_thresh),
}
def eval_retrieval(query_emb, corpus_emb, k_vals=(1, 5, 10)):
# Query embeddings should retrieve themselves from corpus+query pool
sim = query_emb @ corpus_emb.T
results = {}
N = query_emb.shape[0]
for k in k_vals:
topk = sim.topk(min(k, corpus_emb.shape[0]), dim=1).indices
# No ground truth matching β measure diversity/spread
results[f"mean_top{k}_cos"] = sim.topk(k, dim=1).values.mean().item()
# Self-similarity
self_sim = query_emb @ query_emb.T
self_sim.fill_diagonal_(0)
results["self_cos_mean"] = self_sim.mean().item()
results["self_cos_max"] = self_sim.max().item()
return results
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# MAIN
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def run():
from transformers import AutoModel, AutoTokenizer
from huggingface_hub import hf_hub_download
# ββ Load benchmarks ββ
print(f"\n{'='*65}")
print("LOADING BENCHMARKS")
print(f"{'='*65}")
stsb = load_stsb()
sick = load_sick()
mrpc = load_mrpc()
ret_corpus, ret_queries = load_caption_retrieval(5000)
stsb_s1 = [p["sent1"] for p in stsb]
stsb_s2 = [p["sent2"] for p in stsb]
sick_s1 = [p["sent1"] for p in sick]
sick_s2 = [p["sent2"] for p in sick]
mrpc_s1 = [p["sent1"] for p in mrpc]
mrpc_s2 = [p["sent2"] for p in mrpc]
results = {}
# ββ Load student from HuggingFace ββ
print(f"\n{'='*65}")
print("LOADING: geolip-captionbert-8192")
print(f"{'='*65}")
repo_id = "AbstractPhil/geolip-captionbert-8192"
ckpt_path = hf_hub_download(repo_id=repo_id, filename="best_model.pt")
print(f" Downloaded: {ckpt_path}")
student_tok = AutoTokenizer.from_pretrained("google-bert/bert-base-uncased")
student = CaptionEncoder(
vocab_size=student_tok.vocab_size,
max_len=8192, d_model=384, n_heads=6, n_layers=6,
d_ff=1536, output_dim=768, dropout=0.0,
pad_token_id=student_tok.pad_token_id).to(DEVICE)
student.load_state_dict(
torch.load(ckpt_path, weights_only=True, map_location=DEVICE))
student.eval()
n_params = sum(p.numel() for p in student.parameters())
print(f" Parameters: {n_params:,}")
# Encode
print(" Encoding STS-B...")
s_stsb1 = encode_student(student, student_tok, stsb_s1)
s_stsb2 = encode_student(student, student_tok, stsb_s2)
print(" Encoding SICK-R...")
s_sick1 = encode_student(student, student_tok, sick_s1)
s_sick2 = encode_student(student, student_tok, sick_s2)
print(" Encoding MRPC...")
s_mrpc1 = encode_student(student, student_tok, mrpc_s1)
s_mrpc2 = encode_student(student, student_tok, mrpc_s2)
print(" Encoding captions...")
s_corpus = encode_student(student, student_tok, ret_corpus)
s_queries = encode_student(student, student_tok, ret_queries)
r_stsb = eval_sts(stsb, s_stsb1, s_stsb2)
r_sick = eval_sts(sick, s_sick1, s_sick2)
r_mrpc = eval_mrpc(mrpc, s_mrpc1, s_mrpc2)
r_ret = eval_retrieval(s_queries, s_corpus)
results["captionbert"] = {
"stsb": r_stsb, "sick": r_sick, "mrpc": r_mrpc,
"retrieval": r_ret, "params": n_params,
}
print(f" STS-B: spearman={r_stsb['spearman']:.4f} pearson={r_stsb['pearson']:.4f}")
print(f" SICK-R: spearman={r_sick['spearman']:.4f} pearson={r_sick['pearson']:.4f}")
print(f" MRPC: f1={r_mrpc['f1']:.4f} acc={r_mrpc['accuracy']:.4f} thresh={r_mrpc['threshold']:.2f}")
print(f" Caption self-cos: mean={r_ret['self_cos_mean']:.4f} max={r_ret['self_cos_max']:.4f}")
del student
gc.collect()
torch.cuda.empty_cache()
# ββ Evaluate teachers ββ
teachers = [
("google-bert/bert-base-uncased", "bert-base"),
("answerdotai/ModernBERT-base", "modern-bert"),
("FacebookAI/roberta-base", "roberta"),
("albert/albert-base-v2", "albert"),
("distilbert/distilbert-base-uncased", "distilbert"),
]
for model_name, short in teachers:
print(f"\n{'='*65}")
print(f"EVALUATING: {short}")
print(f"{'='*65}")
model = AutoModel.from_pretrained(model_name).to(DEVICE).eval()
tokenizer = AutoTokenizer.from_pretrained(model_name)
n_p = sum(p.numel() for p in model.parameters())
print(f" Parameters: {n_p:,}")
print(" Encoding STS-B...")
e1 = encode_hf(model, tokenizer, stsb_s1)
e2 = encode_hf(model, tokenizer, stsb_s2)
r_stsb = eval_sts(stsb, e1, e2)
print(" Encoding SICK-R...")
e1 = encode_hf(model, tokenizer, sick_s1)
e2 = encode_hf(model, tokenizer, sick_s2)
r_sick = eval_sts(sick, e1, e2)
print(" Encoding MRPC...")
e1 = encode_hf(model, tokenizer, mrpc_s1)
e2 = encode_hf(model, tokenizer, mrpc_s2)
r_mrpc = eval_mrpc(mrpc, e1, e2)
print(" Encoding captions...")
eq = encode_hf(model, tokenizer, ret_queries)
ec = encode_hf(model, tokenizer, ret_corpus)
r_ret = eval_retrieval(eq, ec)
results[short] = {
"stsb": r_stsb, "sick": r_sick, "mrpc": r_mrpc,
"retrieval": r_ret, "params": n_p,
}
print(f" STS-B: spearman={r_stsb['spearman']:.4f}")
print(f" SICK-R: spearman={r_sick['spearman']:.4f}")
print(f" MRPC: f1={r_mrpc['f1']:.4f}")
del model, tokenizer
gc.collect()
torch.cuda.empty_cache()
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SUMMARY
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print(f"\n{'='*65}")
print("FULL BENCHMARK SUMMARY")
print(f"{'='*65}")
print(f"\n {'Model':<20} {'Params':>10} {'STS-B Ο':>9} {'SICK-R Ο':>9} {'MRPC F1':>9}")
print(f" {'-'*57}")
sorted_r = sorted(results.items(),
key=lambda x: x[1]["stsb"]["spearman"], reverse=True)
for name, r in sorted_r:
marker = " β
" if name == "captionbert" else ""
print(f" {name:<20} {r['params']:>10,} "
f"{r['stsb']['spearman']:>9.4f} "
f"{r['sick']['spearman']:>9.4f} "
f"{r['mrpc']['f1']:>9.4f}{marker}")
# Detailed captionbert results
cb = results["captionbert"]
print(f"\n geolip-captionbert-8192 detailed:")
print(f" STS-B: spearman={cb['stsb']['spearman']:.4f} pearson={cb['stsb']['pearson']:.4f} mean_cos={cb['stsb']['cos_mean']:.4f}")
print(f" SICK-R: spearman={cb['sick']['spearman']:.4f} pearson={cb['sick']['pearson']:.4f} mean_cos={cb['sick']['cos_mean']:.4f}")
print(f" MRPC: f1={cb['mrpc']['f1']:.4f} acc={cb['mrpc']['accuracy']:.4f} threshold={cb['mrpc']['threshold']:.2f}")
print(f" Caption retrieval:")
for k, v in cb["retrieval"].items():
print(f" {k}: {v:.4f}")
# Rankings
print(f"\n Rankings:")
for bench in ["stsb", "sick"]:
ranked = sorted(results.items(),
key=lambda x: x[1][bench]["spearman"], reverse=True)
pos = next(i for i, (n, _) in enumerate(ranked) if n == "captionbert") + 1
print(f" {bench.upper()}: #{pos}/{len(ranked)}")
ranked_mrpc = sorted(results.items(),
key=lambda x: x[1]["mrpc"]["f1"], reverse=True)
pos = next(i for i, (n, _) in enumerate(ranked_mrpc) if n == "captionbert") + 1
print(f" MRPC: #{pos}/{len(ranked_mrpc)}")
# vs best teacher
best_name = max((n for n in results if n != "captionbert"),
key=lambda n: results[n]["stsb"]["spearman"])
best_stsb = results[best_name]["stsb"]["spearman"]
student_stsb = results["captionbert"]["stsb"]["spearman"]
print(f"\n vs Best teacher ({best_name}):")
print(f" STS-B gap: {student_stsb - best_stsb:+.4f}")
print(f" Param ratio: {results[best_name]['params'] / results['captionbert']['params']:.1f}Γ")
# Save
save_path = "benchmark_captionbert_8192.json"
with open(save_path, "w") as f:
json.dump(results, f, indent=2, default=str)
print(f"\n Saved to {save_path}")
print(f"\n{'='*65}")
print("DONE")
print(f"{'='*65}")
if __name__ == "__main__":
run() |