Spaces:
Running
on
Zero
Running
on
Zero
gokaygokay
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -192,11 +192,11 @@ with gr.Blocks() as demo:
|
|
192 |
seed = gr.Slider(0, MAX_SEED, label="Seed", value=42, step=1)
|
193 |
randomize_seed = gr.Checkbox(label="Randomize Seed", value=True)
|
194 |
with gr.Row():
|
195 |
-
width = gr.Slider(
|
196 |
-
height = gr.Slider(
|
197 |
with gr.Row():
|
198 |
guidance_scale = gr.Slider(0.0, 10.0, label="Guidance Scale", value=3.5, step=0.1)
|
199 |
-
num_inference_steps = gr.Slider(1, 50, label="Steps", value=
|
200 |
|
201 |
with gr.Accordion("3D Generation Settings", open=False):
|
202 |
gr.Markdown("Stage 1: Sparse Structure Generation")
|
@@ -224,7 +224,7 @@ with gr.Blocks() as demo:
|
|
224 |
with gr.Column():
|
225 |
|
226 |
video_output = gr.Video(label="Generated 3D Asset", autoplay=True, loop=True)
|
227 |
-
model_output = LitModel3D(label="Extracted GLB/Gaussian")
|
228 |
|
229 |
with gr.Row():
|
230 |
download_glb = gr.DownloadButton(label="Download GLB", interactive=False)
|
|
|
192 |
seed = gr.Slider(0, MAX_SEED, label="Seed", value=42, step=1)
|
193 |
randomize_seed = gr.Checkbox(label="Randomize Seed", value=True)
|
194 |
with gr.Row():
|
195 |
+
width = gr.Slider(512, 1024, label="Width", value=1024, step=16)
|
196 |
+
height = gr.Slider(512, 1024, label="Height", value=1024, step=16)
|
197 |
with gr.Row():
|
198 |
guidance_scale = gr.Slider(0.0, 10.0, label="Guidance Scale", value=3.5, step=0.1)
|
199 |
+
num_inference_steps = gr.Slider(1, 50, label="Steps", value=28, step=1)
|
200 |
|
201 |
with gr.Accordion("3D Generation Settings", open=False):
|
202 |
gr.Markdown("Stage 1: Sparse Structure Generation")
|
|
|
224 |
with gr.Column():
|
225 |
|
226 |
video_output = gr.Video(label="Generated 3D Asset", autoplay=True, loop=True)
|
227 |
+
model_output = LitModel3D(label="Extracted GLB/Gaussian", exposure=15.0)
|
228 |
|
229 |
with gr.Row():
|
230 |
download_glb = gr.DownloadButton(label="Download GLB", interactive=False)
|