change the default steps to 2
Browse files
server/pipelines/controlnetSDTurbo.py
CHANGED
@@ -54,7 +54,7 @@ class Pipeline:
|
|
54 |
4402026899276587, min=0, title="Seed", field="seed", hide=True, id="seed"
|
55 |
)
|
56 |
steps: int = Field(
|
57 |
-
|
58 |
)
|
59 |
width: int = Field(
|
60 |
512, min=2, max=15, title="Width", disabled=True, hide=True, id="width"
|
|
|
54 |
4402026899276587, min=0, title="Seed", field="seed", hide=True, id="seed"
|
55 |
)
|
56 |
steps: int = Field(
|
57 |
+
2, min=1, max=15, title="Steps", field="range", hide=True, id="steps"
|
58 |
)
|
59 |
width: int = Field(
|
60 |
512, min=2, max=15, title="Width", disabled=True, hide=True, id="width"
|