debugging
Browse files
app.py
CHANGED
@@ -183,13 +183,13 @@ with gr.Blocks() as demo:
|
|
183 |
slat_guidance_strength = gr.Slider(0.0, 10.0, label="Guidance Strength", value=3.0, step=0.1)
|
184 |
slat_sampling_steps = gr.Slider(1, 50, label="Sampling Steps", value=12, step=1)
|
185 |
|
186 |
-
|
187 |
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
|
192 |
-
|
193 |
|
194 |
# with gr.Column():
|
195 |
# video_output = gr.Video(label="Generated 3D Asset", autoplay=True, loop=True, height=300)
|
@@ -227,6 +227,7 @@ with gr.Blocks() as demo:
|
|
227 |
outputs=[trial_id],
|
228 |
)
|
229 |
|
|
|
230 |
# generate_btn.click(
|
231 |
# image_to_3d,
|
232 |
# inputs=[trial_id, seed, randomize_seed, ss_guidance_strength, ss_sampling_steps, slat_guidance_strength, slat_sampling_steps],
|
|
|
183 |
slat_guidance_strength = gr.Slider(0.0, 10.0, label="Guidance Strength", value=3.0, step=0.1)
|
184 |
slat_sampling_steps = gr.Slider(1, 50, label="Sampling Steps", value=12, step=1)
|
185 |
|
186 |
+
# generate_btn = gr.Button("Generate")
|
187 |
|
188 |
+
# with gr.Accordion(label="GLB Extraction Settings", open=False):
|
189 |
+
# mesh_simplify = gr.Slider(0.9, 0.98, label="Simplify", value=0.95, step=0.01)
|
190 |
+
# texture_size = gr.Slider(512, 2048, label="Texture Size", value=1024, step=512)
|
191 |
|
192 |
+
# extract_glb_btn = gr.Button("Extract GLB", interactive=False)
|
193 |
|
194 |
# with gr.Column():
|
195 |
# video_output = gr.Video(label="Generated 3D Asset", autoplay=True, loop=True, height=300)
|
|
|
227 |
outputs=[trial_id],
|
228 |
)
|
229 |
|
230 |
+
|
231 |
# generate_btn.click(
|
232 |
# image_to_3d,
|
233 |
# inputs=[trial_id, seed, randomize_seed, ss_guidance_strength, ss_sampling_steps, slat_guidance_strength, slat_sampling_steps],
|