alexeyGod commited on
Commit
d4dfcc5
·
verified ·
1 Parent(s): 90a23cb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -112,7 +112,7 @@ with gr.Blocks(css=css) as demo:
112
  minimum=0,
113
  maximum=MAX_SEED,
114
  step=1,
115
- value=0,
116
  )
117
 
118
  randomize_seed = gr.Checkbox(label="Randomize seed", value=True)
@@ -123,7 +123,7 @@ with gr.Blocks(css=css) as demo:
123
  minimum=256,
124
  maximum=MAX_IMAGE_SIZE,
125
  step=32,
126
- value=1024, # Replace with defaults that work for your model
127
  )
128
 
129
  height = gr.Slider(
@@ -131,7 +131,7 @@ with gr.Blocks(css=css) as demo:
131
  minimum=256,
132
  maximum=MAX_IMAGE_SIZE,
133
  step=32,
134
- value=1024, # Replace with defaults that work for your model
135
  )
136
 
137
  with gr.Row():
@@ -148,7 +148,7 @@ with gr.Blocks(css=css) as demo:
148
  minimum=1,
149
  maximum=50,
150
  step=1,
151
- value=2, # Replace with defaults that work for your model
152
  )
153
 
154
  gr.Examples(examples=examples, inputs=[prompt])
 
112
  minimum=0,
113
  maximum=MAX_SEED,
114
  step=1,
115
+ value=8,
116
  )
117
 
118
  randomize_seed = gr.Checkbox(label="Randomize seed", value=True)
 
123
  minimum=256,
124
  maximum=MAX_IMAGE_SIZE,
125
  step=32,
126
+ value=512, # Replace with defaults that work for your model
127
  )
128
 
129
  height = gr.Slider(
 
131
  minimum=256,
132
  maximum=MAX_IMAGE_SIZE,
133
  step=32,
134
+ value=512, # Replace with defaults that work for your model
135
  )
136
 
137
  with gr.Row():
 
148
  minimum=1,
149
  maximum=50,
150
  step=1,
151
+ value=50, # Replace with defaults that work for your model
152
  )
153
 
154
  gr.Examples(examples=examples, inputs=[prompt])