Amitz244 commited on
Commit
874e5ae
·
verified ·
1 Parent(s): 545b7e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -97,7 +97,7 @@ iface = gr.Interface(
97
  fn=predict_emotion,
98
  inputs=gr.Image(type="pil", label="Upload an Image"),
99
  outputs=[gr.Textbox(label="Emotion"), gr.Textbox(label="Memorability Score")],
100
- title="PerceptCLIP-Emotions",
101
  description="This is an official demo of PerceptCLIP from the paper: [Don’t Judge Before You CLIP: A Unified Approach for Perceptual Tasks](https://arxiv.org/pdf/2503.13260). We finetune CLIP using LoRA and an MLP head for each specific task. This demo shows results from three models, one for each task - visual emotion analysis, memorability prediction, and image quality assessment.",
102
  examples=example_images
103
  )
 
97
  fn=predict_emotion,
98
  inputs=gr.Image(type="pil", label="Upload an Image"),
99
  outputs=[gr.Textbox(label="Emotion"), gr.Textbox(label="Memorability Score")],
100
+ title="PerceptCLIP",
101
  description="This is an official demo of PerceptCLIP from the paper: [Don’t Judge Before You CLIP: A Unified Approach for Perceptual Tasks](https://arxiv.org/pdf/2503.13260). We finetune CLIP using LoRA and an MLP head for each specific task. This demo shows results from three models, one for each task - visual emotion analysis, memorability prediction, and image quality assessment.",
102
  examples=example_images
103
  )