Zero-Shot Image Classification
Transformers
PyTorch
Safetensors
English
clip
vision
language
fashion
ecommerce
Instructions to use risedev/test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use risedev/test with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("zero-shot-image-classification", model="risedev/test") 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("risedev/test") model = AutoModelForZeroShotImageClassification.from_pretrained("risedev/test") - Notebooks
- Google Colab
- Kaggle
File size: 1,001 Bytes
8e71a92 5448fc1 8e71a92 5448fc1 8e71a92 d2f0954 8e71a92 5448fc1 d2f0954 5448fc1 8e71a92 d2f0954 8e71a92 d2f0954 8e71a92 | 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 | from typing import Dict, List, Any
from PIL import Image
from io import BytesIO
from transformers import pipeline
import base64
class EndpointHandler():
def __init__(self, path=""):
self.pipeline=pipeline("zero-shot-image-classification",model=path)
def __call__(self, data: Dict[str, Any]) -> List[Dict[str, Any]]:
"""
data args:
parameters: {
candidate_labels: List[str]
}
inputs: str
Return:
A :obj:`list`:. The list contains items that are dicts should be liked {"label": "XXX", "score": 0.82}
"""
parameters = data.get("parameters", {})
inputs = data.get("inputs", "")
# decode base64 image to PIL
image = Image.open(BytesIO(base64.b64decode(inputs)))
# run prediction one image wit provided candiates
prediction = self.pipeline(images=[image], candidate_labels=parameters.get("candidate_labels", []))
return prediction[0] |