Spaces:
Sleeping
Sleeping
update app
Browse files
app.py
CHANGED
@@ -65,7 +65,7 @@ with gr.Blocks(css="style.css") as demo:
|
|
65 |
gr.Markdown(DESCRIPTION)
|
66 |
|
67 |
with gr.Box():
|
68 |
-
gr.Markdown('''## Step 1 (Finding a global manipulation direction) - Please enter the target **text prompt** and **identity loss weight** to find global manipulation direction
|
69 |
with gr.Row():
|
70 |
with gr.Column():
|
71 |
style_gan_type = gr.Radio(["FFHQ", "MetFaces"], value = "FFHQ", label="StyleGAN Type", interactive=True)
|
@@ -86,12 +86,12 @@ with gr.Blocks(css="style.css") as demo:
|
|
86 |
find_direction_btn = gr.Button("Find Direction").style(full_width=False)
|
87 |
|
88 |
with gr.Box():
|
89 |
-
gr.Markdown('''## Step 2 (Manipulation) - Please upload an image
|
90 |
with gr.Row():
|
91 |
direction_radio = gr.Radio(direction_list, label="List of Directions")
|
92 |
with gr.Row():
|
93 |
manipulation_strength = gr.Slider(
|
94 |
-
0.1,
|
95 |
)
|
96 |
with gr.Row():
|
97 |
with gr.Column():
|
|
|
65 |
gr.Markdown(DESCRIPTION)
|
66 |
|
67 |
with gr.Box():
|
68 |
+
gr.Markdown('''## Step 1 (Finding a global manipulation direction) - Please enter the target **text prompt** and **identity loss weight** to find global manipulation direction.''')
|
69 |
with gr.Row():
|
70 |
with gr.Column():
|
71 |
style_gan_type = gr.Radio(["FFHQ", "MetFaces"], value = "FFHQ", label="StyleGAN Type", interactive=True)
|
|
|
86 |
find_direction_btn = gr.Button("Find Direction").style(full_width=False)
|
87 |
|
88 |
with gr.Box():
|
89 |
+
gr.Markdown('''## Step 2 (Manipulation) - Please upload an image: - You can select any of the previously found **directions** and set the **manipulation strength** to manipulate the image.''')
|
90 |
with gr.Row():
|
91 |
direction_radio = gr.Radio(direction_list, label="List of Directions")
|
92 |
with gr.Row():
|
93 |
manipulation_strength = gr.Slider(
|
94 |
+
0.1, 25, value=10, step=0.1, label="Manipulation Strength",interactive=True
|
95 |
)
|
96 |
with gr.Row():
|
97 |
with gr.Column():
|