merve HF staff commited on
Commit
f9ba4ce
·
1 Parent(s): d2b0ea9

Add description

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -45,7 +45,7 @@ def infer(input_image):
45
  return gallery_output
46
 
47
 
48
- description="This is an application where you can draw an image and find the closest artwork among 10k art from wikiart dataset."
49
- gr.Interface(infer, "sketchpad", "gallery", title="Draw to Search Art 🖼️").launch()
50
 
51
 
 
45
  return gallery_output
46
 
47
 
48
+ description="This is an application where you can draw an image and find the closest artwork among 10k art from wikiart dataset. This is built on 🤗 transformers integration of SIGLIP model by Google, and FAISS for indexing."
49
+ gr.Interface(infer, "sketchpad", "gallery", description=description, title="Draw to Search Art 🖼️").launch()
50
 
51