Spaces:
Sleeping
Sleeping
Kaixuanliu
commited on
Commit
•
d7d4715
1
Parent(s):
e16e2d6
Update app.py
Browse files
app.py
CHANGED
@@ -64,7 +64,12 @@ with gr.Blocks() as demo:
|
|
64 |
|
65 |
with gr.Row():
|
66 |
with gr.Column():
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
68 |
with gr.Column(min_width=512):
|
69 |
result_img = gr.Image(label="Image Gnerated by AdvUnlearn",width=512,show_share_button=False,show_download_button=False)
|
70 |
|
|
|
64 |
|
65 |
with gr.Row():
|
66 |
with gr.Column():
|
67 |
+
with gr.Row():
|
68 |
+
seed = gr.Textbox(label="seed", value=666)
|
69 |
+
with gr.Row():
|
70 |
+
steps = gr.Textbox(label="num_steps", value=100)
|
71 |
+
with gr.row():
|
72 |
+
start_button = gr.Button("AdvUnlearn",size='lg')
|
73 |
with gr.Column(min_width=512):
|
74 |
result_img = gr.Image(label="Image Gnerated by AdvUnlearn",width=512,show_share_button=False,show_download_button=False)
|
75 |
|