Spaces:
Running
on
Zero
Running
on
Zero
Add description
Browse files
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",
|
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 |
|