Instructions to use Lucas20250626/semanticgallery-mlx-siglip2-stage1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Lucas20250626/semanticgallery-mlx-siglip2-stage1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("zero-shot-image-classification", model="Lucas20250626/semanticgallery-mlx-siglip2-stage1") pipe( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png", candidate_labels=["animals", "humans", "landscape"], )# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Lucas20250626/semanticgallery-mlx-siglip2-stage1", device_map="auto") - MLX
How to use Lucas20250626/semanticgallery-mlx-siglip2-stage1 with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir semanticgallery-mlx-siglip2-stage1 Lucas20250626/semanticgallery-mlx-siglip2-stage1
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Atomic Chat
File size: 1,201 Bytes
37d8977 | 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 | {
"model_path": "/Users/duanyongyao/PythonProjects/SemanticGallery/.cache/mlx/siglip2-base-patch16-224-f32",
"init_weights": null,
"weights_file": "/Users/duanyongyao/PythonProjects/SemanticGallery/logs/semanticgallery_public_stage1/weights.safetensors",
"precision": "bfloat16",
"lr": 1e-05,
"weight_decay": 0.01,
"max_length": 64,
"batch_size": 2,
"epochs": 1,
"seed": 20260403,
"train_rows": 1587,
"val_rows": 333,
"policy": {
"train": {
"public": 1587,
"private": 0,
"unknown": 0,
"sources": {
"flickr30k": 819,
"screen2words": 768
}
},
"val": {
"public": 0,
"private": 0,
"unknown": 0,
"sources": {}
}
},
"trainable": {
"text_last_n": 2,
"vision_last_n": 2,
"trainable_parameter_tensors": 83
},
"history": [
{
"epoch": 1,
"train_loss": 7.748603820800781e-07,
"train_loss_last": 7.748603820800781e-07,
"train_rows": 2,
"train_steps": 1,
"train_step_mean_ms": 292.7449999988312,
"train_grad_norm_mean": 0.000255584716796875,
"val_loss": 0.00033167004585266113,
"val_rows": 2,
"val_steps": 1
}
]
} |