Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,21 +1,23 @@
|
|
1 |
import gradio as gr
|
2 |
-
from transformers import
|
3 |
|
4 |
# Charger le pipeline
|
5 |
-
|
|
|
|
|
6 |
|
7 |
# Définir la fonction pour la classification d'image avec du texte en entrée
|
8 |
def classify_image_with_text(text, image):
|
9 |
# Effectuer la classification d'image à l'aide du texte
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
return
|
14 |
|
15 |
# Créer l'interface Gradio avec l'API de Gradio Blocks
|
16 |
with gr.Interface(
|
17 |
fn=classify_image_with_text,
|
18 |
-
inputs=[gr.Textbox(lines=
|
19 |
outputs=gr.Textbox(label='Sortie de l\'API'),
|
20 |
title="SD Models"
|
21 |
) as iface:
|
|
|
1 |
import gradio as gr
|
2 |
+
from transformers import AutoProcessor, CLIPModel
|
3 |
|
4 |
# Charger le pipeline
|
5 |
+
|
6 |
+
model = CLIPModel.from_pretrained("patrickjohncyh/fashion-clip")
|
7 |
+
processor = AutoProcessor.from_pretrained("patrickjohncyh/fashion-clip")
|
8 |
|
9 |
# Définir la fonction pour la classification d'image avec du texte en entrée
|
10 |
def classify_image_with_text(text, image):
|
11 |
# Effectuer la classification d'image à l'aide du texte
|
12 |
+
inputs = processor(
|
13 |
+
text=[text], images=image, return_tensors="pt", padding=True
|
14 |
+
)
|
15 |
+
return model(**inputs)
|
16 |
|
17 |
# Créer l'interface Gradio avec l'API de Gradio Blocks
|
18 |
with gr.Interface(
|
19 |
fn=classify_image_with_text,
|
20 |
+
inputs=[gr.Textbox(lines=1, label="Prompt"), gr.Image(label="Image")],
|
21 |
outputs=gr.Textbox(label='Sortie de l\'API'),
|
22 |
title="SD Models"
|
23 |
) as iface:
|