merve HF staff commited on
Commit
f487b28
1 Parent(s): def1b42

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -51,7 +51,7 @@ def infer(input_image):
51
  return gallery_output
52
 
53
 
54
- 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."
55
  sketchpad = gr.ImageEditor(type="pil")
56
 
57
  gr.Interface(infer, sketchpad, "gallery", description=description, title="Draw to Search Art 🖼️").launch()
 
51
  return gallery_output
52
 
53
 
54
+ description="This is an application where you can draw or upload an image and find the closest artwork among 10k art from wikiart dataset. This is built on 🤗 transformers integration of [SigLIP](https://github.com/merveenoyan/siglip?tab=readme-ov-file#siglip-projects-) model by Google, and FAISS for indexing. In this [link](https://github.com/merveenoyan/siglip?tab=readme-ov-file#siglip-projects-) you can also find the notebook to index the dataset using SigLIP."
55
  sketchpad = gr.ImageEditor(type="pil")
56
 
57
  gr.Interface(infer, sketchpad, "gallery", description=description, title="Draw to Search Art 🖼️").launch()