Spaces:
Running
on
Zero
Running
on
Zero
Richard Neuschulz
commited on
Commit
•
38f95d1
1
Parent(s):
faa7adc
added settings
Browse files- .vscode/settings.json +3 -0
- app.py +1 -1
.vscode/settings.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cmake.configureOnOpen": true
|
3 |
+
}
|
app.py
CHANGED
@@ -97,7 +97,7 @@ with gr.Blocks(css=css) as demo:
|
|
97 |
negative_prompt = gr.Textbox(label="Negative Prompt", placeholder="low quality", value="low quality, worst quality")
|
98 |
style = "Photorealistic"
|
99 |
submit = gr.Button("Submit")
|
100 |
-
with gr.Column(open=True
|
101 |
face_strength = gr.Slider(label="Guidance Scale", info="Dunno what this actually is", value=7.5, step=0.1, minimum=1, maximum=10)
|
102 |
likeness_strength = gr.Slider(label="Scale", info="Dunno what this actually is, either", value=1.0, step=0.1, minimum=0, maximum=5)
|
103 |
with gr.Column():
|
|
|
97 |
negative_prompt = gr.Textbox(label="Negative Prompt", placeholder="low quality", value="low quality, worst quality")
|
98 |
style = "Photorealistic"
|
99 |
submit = gr.Button("Submit")
|
100 |
+
with gr.Column(open=True):
|
101 |
face_strength = gr.Slider(label="Guidance Scale", info="Dunno what this actually is", value=7.5, step=0.1, minimum=1, maximum=10)
|
102 |
likeness_strength = gr.Slider(label="Scale", info="Dunno what this actually is, either", value=1.0, step=0.1, minimum=0, maximum=5)
|
103 |
with gr.Column():
|