Views
No views yet
| Metric | Score |
|---|---|
| Recall@5 | 21.95% |
| Recall@10 | 31.20% |
| Recall@20 | 42.50% |
1import torch
2from huggingface_hub import hf_hub_download
3
4# Download model
5model_path = hf_hub_download(
6 repo_id="Potato-Scientist/multi-modal-search",
7 filename="pytorch_model.bin"
8)
9
10# Load checkpoint
11checkpoint = torch.load(model_path, map_location='cpu')
12
13# Load into your model
14from src.models.multimodal_model import MultimodalModel
15
16model = MultimodalModel(
17 embedding_dim=512,
18 freeze_backbones=False,
19 pretrained=False
20)
21model.load_state_dict(checkpoint['model_state_dict'])
22model.eval()1@misc{multimodal-search-2026,
2 author = {Potato-Scientist},
3 title = {Multimodal Search Model},
4 year = {2026},
5 publisher = {HuggingFace},
6 howpublished = {\url{https://huggingface.co/Potato-Scientist/multimodal-search-model}}
7}