Skip to content

Commit

Permalink
set correct default values for scaling and sampler; closes issues bas…
Browse files Browse the repository at this point in the history
  • Loading branch information
lstein committed Aug 29, 2022
1 parent 18899be commit e351d6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/dream_web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h2 id="header">Stable Diffusion Dream Server</h2>
<select id="sampler" name="sampler" value="k_lms">
<option value="ddim">DDIM</option>
<option value="plms">PLMS</option>
<option value="k_lms">KLMS</option>
<option value="k_lms" selected>KLMS</option>
<option value="k_dpm_2">KDPM_2</option>
<option value="k_dpm_2_a">KDPM_2A</option>
<option value="k_euler">KEULER</option>
Expand Down Expand Up @@ -70,7 +70,7 @@ <h2 id="header">Stable Diffusion Dream Server</h2>
<input value="0.8" min="0" max="1" type="number" id="gfpgan_strength" name="gfpgan_strength" step="0.05">
<label title="Upscaling to perform using ESRGAN." for="upscale_level">Upscaling Level</label>
<select id="upscale_level" name="upscale_level" value="">
<option value=""></option>
<option value="" selected></option>
<option value="2">2x</option>
<option value="4">4x</option>
</select>
Expand Down

0 comments on commit e351d6f

Please sign in to comment.