Spaces:
Running on Zero
Running on Zero
Commit ·
27ae0a2
1
Parent(s): 4e29877
Move GPU Duration to top of Advanced Settings
Browse filesGPU Duration is adjusted more frequently than seed, so it belongs at the top for easier access.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- templates/app.html +5 -5
templates/app.html
CHANGED
|
@@ -114,6 +114,11 @@
|
|
| 114 |
<div class="settings-group">
|
| 115 |
<div class="settings-group-title">Advanced Settings</div>
|
| 116 |
<div class="settings-group-body">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 117 |
<div class="slider-row">
|
| 118 |
<label>Seed</label>
|
| 119 |
<input type="range" id="custom-seed" min="0" max="2147483647" step="1" value="0">
|
|
@@ -133,11 +138,6 @@
|
|
| 133 |
<input type="range" id="custom-steps" min="1" max="50" step="1" value="4">
|
| 134 |
<span class="slider-val" id="custom-steps-val">4</span>
|
| 135 |
</div>
|
| 136 |
-
<div class="slider-row">
|
| 137 |
-
<label>GPU Duration (s)</label>
|
| 138 |
-
<input type="range" id="custom-gpu-duration" min="10" max="120" step="5" value="20">
|
| 139 |
-
<span class="slider-val" id="custom-gpu-duration-val">20</span>
|
| 140 |
-
</div>
|
| 141 |
</div>
|
| 142 |
</div>
|
| 143 |
</div>
|
|
|
|
| 114 |
<div class="settings-group">
|
| 115 |
<div class="settings-group-title">Advanced Settings</div>
|
| 116 |
<div class="settings-group-body">
|
| 117 |
+
<div class="slider-row">
|
| 118 |
+
<label>GPU Duration (s)</label>
|
| 119 |
+
<input type="range" id="custom-gpu-duration" min="10" max="120" step="5" value="20">
|
| 120 |
+
<span class="slider-val" id="custom-gpu-duration-val">20</span>
|
| 121 |
+
</div>
|
| 122 |
<div class="slider-row">
|
| 123 |
<label>Seed</label>
|
| 124 |
<input type="range" id="custom-seed" min="0" max="2147483647" step="1" value="0">
|
|
|
|
| 138 |
<input type="range" id="custom-steps" min="1" max="50" step="1" value="4">
|
| 139 |
<span class="slider-val" id="custom-steps-val">4</span>
|
| 140 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 141 |
</div>
|
| 142 |
</div>
|
| 143 |
</div>
|