Spaces:
Sleeping
Sleeping
add precomputed directions
Browse files
app.py
CHANGED
@@ -75,7 +75,7 @@ with gr.Blocks(css="style.css") as demo:
|
|
75 |
gr.Markdown(DESCRIPTION)
|
76 |
|
77 |
with gr.Box():
|
78 |
-
gr.Markdown('''### Step 1) Finding a global manipulation direction
|
79 |
- Please enter the target **text prompt** and **identity loss weight** to find global manipulation direction.''')
|
80 |
with gr.Row():
|
81 |
with gr.Column():
|
@@ -97,8 +97,8 @@ with gr.Blocks(css="style.css") as demo:
|
|
97 |
find_direction_btn = gr.Button("Find Direction").style(full_width=False)
|
98 |
|
99 |
with gr.Box():
|
100 |
-
gr.Markdown('''### Step 2) Text-guided manipulation
|
101 |
-
- Please upload an image
|
102 |
- You can select any of the previously found **directions** and set the **manipulation strength** to manipulate the image.''')
|
103 |
with gr.Row():
|
104 |
direction_radio = gr.Radio(direction_list, label="List of Directions")
|
|
|
75 |
gr.Markdown(DESCRIPTION)
|
76 |
|
77 |
with gr.Box():
|
78 |
+
gr.Markdown('''### Step 1) Finding a global manipulation direction <br />
|
79 |
- Please enter the target **text prompt** and **identity loss weight** to find global manipulation direction.''')
|
80 |
with gr.Row():
|
81 |
with gr.Column():
|
|
|
97 |
find_direction_btn = gr.Button("Find Direction").style(full_width=False)
|
98 |
|
99 |
with gr.Box():
|
100 |
+
gr.Markdown('''### Step 2) Text-guided manipulation <br />
|
101 |
+
- Please upload an image. <br />
|
102 |
- You can select any of the previously found **directions** and set the **manipulation strength** to manipulate the image.''')
|
103 |
with gr.Row():
|
104 |
direction_radio = gr.Radio(direction_list, label="List of Directions")
|