Spaces:
Runtime error
Runtime error
add context
Browse files- interface/app.py +12 -2
interface/app.py
CHANGED
@@ -97,8 +97,18 @@ def image_click(evt: gr.SelectData):
|
|
97 |
with gr.Blocks() as block:
|
98 |
model_state = gr.State(value="cat")
|
99 |
latents_state = gr.State({})
|
100 |
-
gr.Markdown("# UserControllableLT: User
|
101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
with gr.Row():
|
103 |
with gr.Column():
|
104 |
model_name = gr.Dropdown(
|
|
|
97 |
with gr.Blocks() as block:
|
98 |
model_state = gr.State(value="cat")
|
99 |
latents_state = gr.State({})
|
100 |
+
gr.Markdown("""# UserControllableLT: User Controllable Latent Transformer
|
101 |
+
Unofficial Gradio Demo
|
102 |
+
|
103 |
+
**Author**: Yuki Endo\\
|
104 |
+
**Paper**: [2208.12408](http://arxiv.org/abs/2208.12408)\\
|
105 |
+
**Code**: [UserControllableLT](https://github.com/endo-yuki-t/UserControllableLT)
|
106 |
+
|
107 |
+
<small>
|
108 |
+
Double click to add or remove stop points.
|
109 |
+
<small>
|
110 |
+
""")
|
111 |
+
|
112 |
with gr.Row():
|
113 |
with gr.Column():
|
114 |
model_name = gr.Dropdown(
|