Spaces:
Sleeping
Sleeping
File size: 794 Bytes
dfec65b 87fe2e2 dfec65b 87fe2e2 596e564 0c5d83d ea9eea4 3ab5bd0 0c5d83d dfec65b 0c5d83d dfec65b 0c5d83d dfec65b 0c5d83d ea9eea4 |
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 |
import torch
import gradio as gr
from transformers import pipeline
device = "cuda" if torch.cuda.is_available() else "cpu"
def predict(image):
classifier = pipeline(task="image-classification")
preds = classifier(image)
prediction_json = json.dumps({"score": round(pred["score"], 4), "label": pred["label"]} for pred in preds)
label = gr.Label(output_format="json", default_value=prediction_json)
return label
description = """
"""
gr.Interface(
fn=predict,
inputs=[
gr.components.Image(label="Image to classify", type="pil"),
# gr.inputs.Textbox(lines=1, label="Comma separated candidate labels", placeholder="Enter labels separated by ', '",)
],
outputs="label",
title="Comparateur d'image",
description=description
).launch()
|