Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -183,14 +183,14 @@ with gr.Blocks() as demo:
|
|
183 |
model_output = LitModel3D(label="Generated GLB", exposure=1.0, height=500,camera_position=(90,90,3))
|
184 |
download_glb = gr.DownloadButton(label="Download GLB", interactive=False)
|
185 |
|
186 |
-
with gr.Row():
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
|
195 |
gen_button.click(
|
196 |
run_refinement,
|
|
|
183 |
model_output = LitModel3D(label="Generated GLB", exposure=1.0, height=500,camera_position=(90,90,3))
|
184 |
download_glb = gr.DownloadButton(label="Download GLB", interactive=False)
|
185 |
|
186 |
+
# with gr.Row():
|
187 |
+
# gr.Examples(
|
188 |
+
# examples=EXAMPLES,
|
189 |
+
# fn=run_refinement,
|
190 |
+
# inputs=[image_prompts, mesh, seed, randomize_seed],
|
191 |
+
# outputs=[model_output, download_glb, seed],
|
192 |
+
# cache_examples=False,
|
193 |
+
# )
|
194 |
|
195 |
gen_button.click(
|
196 |
run_refinement,
|