Spaces:
Running
on
Zero
Running
on
Zero
fix UI ersion
Browse files
app.py
CHANGED
@@ -172,7 +172,7 @@ def extract_gaussian(state: dict, req: gr.Request) -> Tuple[str, str]:
|
|
172 |
return gaussian_path, gaussian_path
|
173 |
|
174 |
|
175 |
-
output_buf = gr.
|
176 |
video_output = gr.Video(label="Generated 3D Asset", autoplay=True, loop=True, height=300)
|
177 |
|
178 |
with gr.Blocks(delete_cache=(600, 600)) as demo:
|
@@ -219,7 +219,7 @@ with gr.Blocks(delete_cache=(600, 600)) as demo:
|
|
219 |
download_glb = gr.DownloadButton(label="Download GLB", interactive=False)
|
220 |
download_gs = gr.DownloadButton(label="Download Gaussian", interactive=False)
|
221 |
|
222 |
-
output_buf = gr.
|
223 |
|
224 |
# Handlers
|
225 |
demo.load(start_session)
|
|
|
172 |
return gaussian_path, gaussian_path
|
173 |
|
174 |
|
175 |
+
output_buf = gr.State()
|
176 |
video_output = gr.Video(label="Generated 3D Asset", autoplay=True, loop=True, height=300)
|
177 |
|
178 |
with gr.Blocks(delete_cache=(600, 600)) as demo:
|
|
|
219 |
download_glb = gr.DownloadButton(label="Download GLB", interactive=False)
|
220 |
download_gs = gr.DownloadButton(label="Download Gaussian", interactive=False)
|
221 |
|
222 |
+
output_buf = gr.State()
|
223 |
|
224 |
# Handlers
|
225 |
demo.load(start_session)
|