Spaces:
Running
Running
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
with gr.Blocks() as demo:
|
4 |
+
gr.Markdown("""
|
5 |
+
# AI and Fashion E-Commerce
|
6 |
+
by [Tony Assi](https://www.tonyassi.com/)
|
7 |
+
|
8 |
+
This space is meant to serve as an overview to various applications of AI and fashion e-commerce.
|
9 |
+
""")
|
10 |
+
|
11 |
+
gr.Markdown("""
|
12 |
+
## Virtual Try-On
|
13 |
+
""")
|
14 |
+
|
15 |
+
|
16 |
+
demo.launch()
|