Skip to content

Commit

Permalink
slapdash addition of scheduler selection
Browse files Browse the repository at this point in the history
  • Loading branch information
zero01101 committed Apr 13, 2024
1 parent 5236ab7 commit 4946ae2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
21 changes: 18 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
Expand Down 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

0 comments on commit 4946ae2

Please sign in to comment.