Saad0KH commited on
Commit
d083901
·
verified ·
1 Parent(s): 10e52d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -7
app.py CHANGED
@@ -1,21 +1,23 @@
1
  import gradio as gr
2
- from transformers import pipeline
3
 
4
  # Charger le pipeline
5
- pipe = pipeline("zero-shot-image-classification", model="patrickjohncyh/fashion-clip")
 
 
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
- result = pipe(image, text)
11
- labels = result["labels"]
12
- scores = result["scores"]
13
- return {label: score for label, score in zip(labels, scores)}
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=5, label="Prompt"), gr.Image(label="Image")],
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: