Views
No views yet
| Metric | Value |
|---|---|
| Image-to-Text Recall@1 | 77.44% |
| Image-to-Text Recall@5 | 91.6% |
| Text-to-Image Recall@1 | 84.86% |
| Text-to-Image Recall@5 | 95.4% |
| Mean Cosine Similarity | 0.458 |
1import torch
2from safetensors.torch import load_file
3
4# Load the projection layer
5state_dict = load_file("model.safetensors")
6projection = torch.nn.Linear(1152, 768, bias=True)
7projection.load_state_dict(state_dict)
8
9# Project SigLIP embeddings to Arctic space
10siglip_embeds = ... # [batch, 1152]
11arctic_compatible = projection(siglip_embeds) # [batch, 768]