diff --git a/spawn.html b/spawn.html
index cac377d813c0a2c53ef0fa5d3ef0dba57af3e83b..3f127c1cd741d5695342821756e104a1284dca44 100644
--- a/spawn.html
+++ b/spawn.html
@@ -1,11 +1,11 @@
 {% extends "templates/spawn.html" %}
 
-{% set gpus = 0 %}
+{% set gpus = 1 %}
 
 {% block heading %}
 <label for="gpus">GPUs</label>
 <input class="form-control input-lg" type="range" name="gpus" value="{{ gpus }}" min="0" max="4" oninput="this.nextElementSibling.value = this.value"/>
-<output>0</output>  
+<output>{{ gpus }}</output>  
 <br/>
 <label for="cores">CPUS</label>
 <input class="form-control input-lg" type="range" name="cores" value="1" min="0" max="96" oninput="this.nextElementSibling.value = this.value"/>