Spaces:
Sleeping
Sleeping
File size: 639 Bytes
0e7ef7b c3220a7 605032a 0e7ef7b 605032a 0e7ef7b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import gradio as gr
from transformers import pipeline
pipeline =pipeline("image-classification",model="p1atdev/siglip-tagger-test-3",trust_remote_code=True)
def predict(input_img):
predictions = pipeline(input_img , threshold=0.5, #optional parameter defaults to 0
return_scores = False #optional parameter defaults to False
)
return predictions
gradio_app = gr.Interface(
predict,
inputs=gr.Image(label="add your image here", sources=['upload', 'webcam'], type="pil"),
outputs=gr.Text(),
title="Image Annotator",
)
if __name__ == "__main__":
gradio_app.launch() |