Spaces:
Running
on
Zero
Running
on
Zero
elliesleightholm
commited on
Commit
•
8769251
1
Parent(s):
843da58
updating example text
Browse files
app.py
CHANGED
@@ -54,15 +54,15 @@ with gr.Blocks(css=".orange-button { background-color: orange; color: black; }")
|
|
54 |
gr.Markdown("### This search demo uses:")
|
55 |
gr.Markdown("### 1. [Marqo Cloud](https://www.marqo.ai/cloud) for the Search Engine.")
|
56 |
gr.Markdown("### 2. [Marqo-Ecommerce-Embeddings](https://huggingface.co/collections/Marqo/marqo-ecommerce-embeddings-66f611b9bb9d035a8d164fbb) for the multimodal embedding models.")
|
57 |
-
gr.Markdown("### 3.
|
58 |
|
59 |
gr.Markdown("")
|
60 |
|
61 |
with gr.Row():
|
62 |
model_dropdown = gr.Dropdown(choices=["marqo-ecommerce-l", "marqo-ecommerce-b"], label="Select Model", value="marqo-ecommerce-l")
|
63 |
-
query_input = gr.Textbox(placeholder="
|
64 |
-
themes_input = gr.Textbox(placeholder="
|
65 |
-
negatives_input = gr.Textbox(placeholder="
|
66 |
|
67 |
with gr.Row():
|
68 |
search_button = gr.Button("Submit", elem_classes="orange-button")
|
|
|
54 |
gr.Markdown("### This search demo uses:")
|
55 |
gr.Markdown("### 1. [Marqo Cloud](https://www.marqo.ai/cloud) for the Search Engine.")
|
56 |
gr.Markdown("### 2. [Marqo-Ecommerce-Embeddings](https://huggingface.co/collections/Marqo/marqo-ecommerce-embeddings-66f611b9bb9d035a8d164fbb) for the multimodal embedding models.")
|
57 |
+
gr.Markdown("### 3. Datasets: [**marqo-ecommerce-l**](https://huggingface.co/Marqo/marqo-ecommerce-embeddings-L) searches over a 200k sample of products across all categories in the [Google Shopping](https://huggingface.co/datasets/Marqo/google-shopping-general-eval) dataset and [**marqo-ecommerce-b**](https://huggingface.co/Marqo/marqo-ecommerce-embeddings-B) searches across a random ~80k subset from [Marqo-GS-10M](https://huggingface.co/datasets/Marqo/marqo-GS-10M).")
|
58 |
|
59 |
gr.Markdown("")
|
60 |
|
61 |
with gr.Row():
|
62 |
model_dropdown = gr.Dropdown(choices=["marqo-ecommerce-l", "marqo-ecommerce-b"], label="Select Model", value="marqo-ecommerce-l")
|
63 |
+
query_input = gr.Textbox(placeholder="comfy chair for a living room", label="Search Query")
|
64 |
+
themes_input = gr.Textbox(placeholder="soft material", label="More of...")
|
65 |
+
negatives_input = gr.Textbox(placeholder="green", label="Less of...")
|
66 |
|
67 |
with gr.Row():
|
68 |
search_button = gr.Button("Submit", elem_classes="orange-button")
|