Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -139,8 +139,11 @@ def recommend_outfits(user_query, image_data, vector_store, image_filenames, ima
|
|
| 139 |
def gradio_app():
|
| 140 |
with gr.Blocks() as demo:
|
| 141 |
gr.Markdown("# RAG-Based Outfit Recommendation System")
|
| 142 |
-
gr.Markdown("
|
| 143 |
-
|
|
|
|
|
|
|
|
|
|
| 144 |
image_data_state = gr.State()
|
| 145 |
vector_store_state = gr.State()
|
| 146 |
image_filenames_state = gr.State()
|
|
|
|
| 139 |
def gradio_app():
|
| 140 |
with gr.Blocks() as demo:
|
| 141 |
gr.Markdown("# RAG-Based Outfit Recommendation System")
|
| 142 |
+
gr.Markdown("Ever spend too much time in the morning or before going out trying to decide what to wear ? ")
|
| 143 |
+
gr.Markdown("Well think no more just upload images of your clothing items, like a virtual wardrobe and describe in natural language what kind of outfit you need.")
|
| 144 |
+
gr.Markdown("Example: I want something classy but with bright colors for a date night")
|
| 145 |
+
gr.Markdown("The system works like your typical RAG, your clothing items are embedded in a vector space based on their captions generated by a VLM")
|
| 146 |
+
gr.Markdown("Then we match your query to the best matching combinations of items from your wardrobe")
|
| 147 |
image_data_state = gr.State()
|
| 148 |
vector_store_state = gr.State()
|
| 149 |
image_filenames_state = gr.State()
|