Spaces:
Running
Running
Update app.py
Browse files
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
|
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()
|