Update app.py
Browse files
app.py
CHANGED
|
@@ -400,21 +400,21 @@ def create_interface():
|
|
| 400 |
artform = gr.Dropdown(["disabled"] + ARTFORM, label="Artform", value="disabled")
|
| 401 |
photo_type = gr.Dropdown(["disabled"] + PHOTO_TYPE, label="Photo Type", value="disabled")
|
| 402 |
|
| 403 |
-
with gr.Accordion("Character Details",
|
| 404 |
body_types = gr.Dropdown(["disabled"] + BODY_TYPES, label="Body Types", value="disabled")
|
| 405 |
default_tags = gr.Dropdown(["disabled"] + DEFAULT_TAGS, label="Default Tags", value="disabled")
|
| 406 |
roles = gr.Dropdown(["disabled"] + ROLES, label="Roles", value="disabled")
|
| 407 |
hairstyles = gr.Dropdown(["disabled"] + HAIRSTYLES, label="Hairstyles", value="disabled")
|
| 408 |
clothing = gr.Dropdown(["disabled"] + CLOTHING, label="Clothing", value="disabled")
|
| 409 |
|
| 410 |
-
with gr.Accordion("Scene Details",
|
| 411 |
place = gr.Dropdown(["disabled"] + PLACE, label="Place", value="disabled")
|
| 412 |
lighting = gr.Dropdown(["disabled"] + LIGHTING, label="Lighting", value="disabled")
|
| 413 |
composition = gr.Dropdown(["disabled"] + COMPOSITION, label="Composition", value="disabled")
|
| 414 |
pose = gr.Dropdown(["disabled"] + POSE, label="Pose", value="disabled")
|
| 415 |
background = gr.Dropdown(["disabled"] + BACKGROUND, label="Background", value="disabled")
|
| 416 |
|
| 417 |
-
with gr.Accordion("Style and Artist",
|
| 418 |
additional_details = gr.Dropdown(["disabled"] + ADDITIONAL_DETAILS, label="Additional Details", value="disabled")
|
| 419 |
photography_styles = gr.Dropdown(["disabled"] + PHOTOGRAPHY_STYLES, label="Photography Styles", value="disabled")
|
| 420 |
device = gr.Dropdown(["disabled"] + DEVICE, label="Device", value="disabled")
|
|
|
|
| 400 |
artform = gr.Dropdown(["disabled"] + ARTFORM, label="Artform", value="disabled")
|
| 401 |
photo_type = gr.Dropdown(["disabled"] + PHOTO_TYPE, label="Photo Type", value="disabled")
|
| 402 |
|
| 403 |
+
with gr.Accordion("Character Details", open=False):
|
| 404 |
body_types = gr.Dropdown(["disabled"] + BODY_TYPES, label="Body Types", value="disabled")
|
| 405 |
default_tags = gr.Dropdown(["disabled"] + DEFAULT_TAGS, label="Default Tags", value="disabled")
|
| 406 |
roles = gr.Dropdown(["disabled"] + ROLES, label="Roles", value="disabled")
|
| 407 |
hairstyles = gr.Dropdown(["disabled"] + HAIRSTYLES, label="Hairstyles", value="disabled")
|
| 408 |
clothing = gr.Dropdown(["disabled"] + CLOTHING, label="Clothing", value="disabled")
|
| 409 |
|
| 410 |
+
with gr.Accordion("Scene Details", open=False):
|
| 411 |
place = gr.Dropdown(["disabled"] + PLACE, label="Place", value="disabled")
|
| 412 |
lighting = gr.Dropdown(["disabled"] + LIGHTING, label="Lighting", value="disabled")
|
| 413 |
composition = gr.Dropdown(["disabled"] + COMPOSITION, label="Composition", value="disabled")
|
| 414 |
pose = gr.Dropdown(["disabled"] + POSE, label="Pose", value="disabled")
|
| 415 |
background = gr.Dropdown(["disabled"] + BACKGROUND, label="Background", value="disabled")
|
| 416 |
|
| 417 |
+
with gr.Accordion("Style and Artist", open=False):
|
| 418 |
additional_details = gr.Dropdown(["disabled"] + ADDITIONAL_DETAILS, label="Additional Details", value="disabled")
|
| 419 |
photography_styles = gr.Dropdown(["disabled"] + PHOTOGRAPHY_STYLES, label="Photography Styles", value="disabled")
|
| 420 |
device = gr.Dropdown(["disabled"] + DEVICE, label="Device", value="disabled")
|