Mansib commited on
Commit
9fcb04c
·
1 Parent(s): fd357d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -55,7 +55,7 @@ iface = gr.Interface(
55
  gr.Textbox(label="Beauty"),
56
  gr.Textbox(label="Allure"),
57
  ],
58
- title="Allure Evaluator",
59
- description="A simple attractiveness evaluation app using OpenAI's CLIP model. How it works: the input image is passed to OpenAI's CLIP image captioning model and evaluated for how much it conforms to the model's idea of hotness, beauty, and attractiveness. These values are then combined to produce a composite score on a scale of 0 to 100.",
60
  )
61
  iface.launch()
 
55
  gr.Textbox(label="Beauty"),
56
  gr.Textbox(label="Allure"),
57
  ],
58
+ title="Attractiveness Evaluator (using OpenAI CLIP)",
59
+ description="A simple attractiveness evaluation app using OpenAI's CLIP model. \nHow it works: \nThe input image is passed to OpenAI's CLIP image captioning model and evaluated for how much it conforms to the model's idea of hotness, beauty, and attractiveness. These values are then combined to produce a composite score on a scale of 0 to 100.\nNote: This is meant solely for educational use.",
60
  )
61
  iface.launch()