diff options
author | discus0434 <discus0434@gmail.com> | 2022-10-19 15:28:42 +0000 |
---|---|---|
committer | discus0434 <discus0434@gmail.com> | 2022-10-19 15:28:42 +0000 |
commit | 3770b8d2fa62066d472a04739c7b84bce8538832 (patch) | |
tree | b4dd5184fc85bd30e21ae4c6afff9bf4f526c93c /modules/ui.py | |
parent | 42fbda83bb9830af18187fddb50c1bedd01da502 (diff) | |
download | stable-diffusion-webui-gfx803-3770b8d2fa62066d472a04739c7b84bce8538832.tar.gz stable-diffusion-webui-gfx803-3770b8d2fa62066d472a04739c7b84bce8538832.tar.bz2 stable-diffusion-webui-gfx803-3770b8d2fa62066d472a04739c7b84bce8538832.zip |
enable to write layer structure of hn himself
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index d9ee462f..18a2add0 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1198,7 +1198,7 @@ def create_ui(wrap_gradio_gpu_call): with gr.Tab(label="Create hypernetwork"):
new_hypernetwork_name = gr.Textbox(label="Name")
new_hypernetwork_sizes = gr.CheckboxGroup(label="Modules", value=["768", "320", "640", "1280"], choices=["768", "320", "640", "1280"])
- new_hypernetwork_layer_structure = gr.Dropdown(label="Hypernetwork layer structure", choices=[(1, 2, 1), (1, 2, 2, 1), (1, 2, 4, 2, 1)])
+ new_hypernetwork_layer_structure = gr.Textbox("1, 2, 1", label="Enter hypernetwork layer structure", placeholder="1st and last digit must be 1. ex:'1, 2, 1'")
new_hypernetwork_add_layer_norm = gr.Checkbox(label="Add layer normalization")
with gr.Row():
|