Spaces:
Sleeping
Sleeping
adaface-neurips
commited on
Commit
·
2a110ec
1
Parent(s):
a29cf91
Fix tiny bug
Browse files
app.py
CHANGED
@@ -320,7 +320,7 @@ with gr.Blocks(css=css) as demo:
|
|
320 |
model_style_type = gr.Dropdown(
|
321 |
label="Base Model Style Type",
|
322 |
info="Switching the base model type will take 10~20 seconds to reload the model",
|
323 |
-
value=args.model_style_type,
|
324 |
choices=["Rrealistic", "Anime", "Photorealistic"],
|
325 |
allow_custom_value=False,
|
326 |
filterable=False,
|
|
|
320 |
model_style_type = gr.Dropdown(
|
321 |
label="Base Model Style Type",
|
322 |
info="Switching the base model type will take 10~20 seconds to reload the model",
|
323 |
+
value=args.model_style_type.capitalize(),
|
324 |
choices=["Rrealistic", "Anime", "Photorealistic"],
|
325 |
allow_custom_value=False,
|
326 |
filterable=False,
|