Instructions to use cringgaard/extrapolation_length with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cringgaard/extrapolation_length with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("zero-shot-image-classification", model="cringgaard/extrapolation_length") pipe( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png", candidate_labels=["animals", "humans", "landscape"], )# Load model directly from transformers import AutoProcessor, AutoModelForZeroShotImageClassification processor = AutoProcessor.from_pretrained("cringgaard/extrapolation_length") model = AutoModelForZeroShotImageClassification.from_pretrained("cringgaard/extrapolation_length", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 777 Bytes
06a5b14 | 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 | {
"_name_or_path": "openai/clip-vit-large-patch14",
"architectures": [
"CLIPModel"
],
"initializer_factor": 1.0,
"logit_scale_init_value": 2.6592,
"model_type": "clip",
"projection_dim": 768,
"text_config": {
"dropout": 0.0,
"hidden_size": 768,
"intermediate_size": 3072,
"model_type": "clip_text_model",
"num_attention_heads": 12,
"projection_dim": 768,
"torch_dtype": "float32"
},
"torch_dtype": "float32",
"transformers_version": "4.49.0",
"vision_config": {
"dropout": 0.0,
"hidden_size": 1024,
"intermediate_size": 4096,
"model_type": "clip_vision_model",
"num_attention_heads": 16,
"num_hidden_layers": 24,
"patch_size": 14,
"projection_dim": 768,
"torch_dtype": "float32"
}
}
|