Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds scheduler selector #285

Merged
merged 2 commits into from
Apr 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,21 @@
</button>
<label>Sampler:</label>
<div id="sampler-ac-select"></div>
<label>Scheduler:</label>
<br />
<select
id="schedulerSelect"
name="schedulerSelect"
onchange="changeScheduler()">
<option value="Automatic" selected="selected">Automatic</option>
<option value="Uniform">Uniform</option>
<option value="Karras">Karras</option>
<option value="Exponential">Exponential</option>
<option value="Polyexponential">Polyexponential</option>
<option value="SGM Uniform">SGM Uniform</option>
</select>
<!-- TODO scheduler isn't exposed via API that i can tell, un-hardcode when that's changed, add to localstorage settings, turn into magic type search autocomplete selectbox, disable selected attribute, all the stuff -->
<br />
<label for="seed">Seed (-1 for random):</label>
<br />
<input
Expand Down Expand Up @@ -337,7 +352,7 @@
<br />
<span id="version">
<a href="https://github.com/zero01101/openOutpaint" target="_blank">
v20240302.001
v20240413.001
</a>
<br />
<a
Expand Down Expand Up @@ -560,7 +575,7 @@

<!-- Content -->
<script src="js/prompt.js?v=7a1c68c" type="text/javascript"></script>
<script src="js/index.js?v=206c7df" type="text/javascript"></script>
<script src="js/index.js?v=6e33053" type="text/javascript"></script>

<script
src="js/ui/floating/history.js?v=4f29db4"
Expand Down
7 changes: 7 additions & 0 deletions js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1403,6 +1403,13 @@ function changeStyles() {
stableDiffusionData.styles = selectedString;
}

function changeScheduler() {
const schedulerSelectEl = document.getElementById("schedulerSelect");
var selectedString = schedulerSelectEl.value;

stableDiffusionData.scheduler = selectedString;
}

async function getSamplers() {
var url = document.getElementById("host").value + "/sdapi/v1/samplers";

Expand Down
Loading