Spaces:
Running
Running
TedYeh
commited on
Commit
·
a408864
1
Parent(s):
e774cd9
update app
Browse files
app.py
CHANGED
@@ -13,13 +13,14 @@ with gr.Blocks() as demo:
|
|
13 |
"""
|
14 |
)
|
15 |
image = gr.Image(type="pil")
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
|
|
23 |
|
24 |
#設定按鈕
|
25 |
submit = gr.Button("Submit")
|
|
|
13 |
"""
|
14 |
)
|
15 |
image = gr.Image(type="pil")
|
16 |
+
with gr.Row():
|
17 |
+
# 設定輸出元件
|
18 |
+
heights = gr.Textbox(label="Heignt")
|
19 |
+
bust = gr.Textbox(label="Bust")
|
20 |
+
waist = gr.Textbox(label="Waist")
|
21 |
+
hips = gr.Textbox(label="Hips")
|
22 |
+
en_des = gr.Textbox(label="English description")
|
23 |
+
zh_des = gr.Textbox(label="Chinese description")
|
24 |
|
25 |
#設定按鈕
|
26 |
submit = gr.Button("Submit")
|