Spaces:
Running
Running
Commit
·
dc5df7b
1
Parent(s):
06b0703
fix: diagram image
Browse files
app.py
CHANGED
@@ -146,9 +146,20 @@ with gr.Blocks(
|
|
146 |
|
147 |
### Sample Results
|
148 |
Here are some example outputs from our method:
|
149 |
-
|
150 |
-
|
151 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
### Technical Details
|
153 |
Our approach uses a novel coordinate-conditioning mechanism that allows precise control over the generated patterns. The heatmap visualization shows the distribution of pattern characteristics across the latent space.
|
154 |
|
|
|
146 |
|
147 |
### Sample Results
|
148 |
Here are some example outputs from our method:
|
149 |
+
"""
|
150 |
+
)
|
151 |
+
|
152 |
+
# Add the diagram as a separate Image component instead of Markdown
|
153 |
+
gr.Image(
|
154 |
+
value="imgs/lpn_diagram.png",
|
155 |
+
show_label=False,
|
156 |
+
interactive=False,
|
157 |
+
show_download_button=False,
|
158 |
+
show_fullscreen_button=False,
|
159 |
+
)
|
160 |
+
|
161 |
+
gr.Markdown(
|
162 |
+
"""
|
163 |
### Technical Details
|
164 |
Our approach uses a novel coordinate-conditioning mechanism that allows precise control over the generated patterns. The heatmap visualization shows the distribution of pattern characteristics across the latent space.
|
165 |
|