Views
No views yet
| Encoder | Quantisation | Size |
|---|---|---|
| Vision | fp16 | 177.4 MB |
| Text | int8 | 290.6 MB |
| Total | 468.0 MB |
| Parameter | Value |
|---|---|
model_family | siglip2 |
embedding_dim | 768 |
image_size | 224 |
image_mean | 0.5000, 0.5000, 0.5000 |
image_std | 0.5000, 0.5000, 0.5000 |
interpolation | bilinear |
resize_mode | direct_resize |
tokenizer_type | sentencepiece |
tokenizer_max_length | 64 |
clip_vision_encoder.onnx, clip_text_encoder.onnx, manifest.json,
and a tokenizer/ directory — all at the repo root.1from huggingface_hub import hf_hub_download
2
3# Download encoder files
4hf_hub_download(
5 repo_id="jennis0/scene-atlas-medium",
6 filename="clip_vision_encoder.onnx",
7)