Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -13,11 +13,11 @@ def classify_image_with_text(text, image):
|
|
13 |
text=["a photo of a man", "a photo of a woman"], images=image, return_tensors="pt", padding=True
|
14 |
)
|
15 |
outputs = model(**inputs)
|
16 |
-
# Récupérer
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
return
|
21 |
|
22 |
# Créer l'interface Gradio avec l'API de Gradio Blocks
|
23 |
with gr.Interface(
|
|
|
13 |
text=["a photo of a man", "a photo of a woman"], images=image, return_tensors="pt", padding=True
|
14 |
)
|
15 |
outputs = model(**inputs)
|
16 |
+
# Récupérer l'index de l'étiquette avec le score le plus élevé
|
17 |
+
predicted_class_index = outputs.logits_per_image.argmax(dim=-1)
|
18 |
+
# Convertir l'index de l'étiquette en libellé
|
19 |
+
label = processor.convert_ids_to_tokens(predicted_class_index.item())
|
20 |
+
return label
|
21 |
|
22 |
# Créer l'interface Gradio avec l'API de Gradio Blocks
|
23 |
with gr.Interface(
|