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_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_activation_func=gr.Dropdown(value="relu",label="Select activation function of hypernetwork",choices=modules.hypernetworks.ui.keys)
new_hypernetwork_activation_func=gr.Dropdown(value="relu",label="Select activation function of hypernetwork. Recommended : Swish / Linear(none)",choices=modules.hypernetworks.ui.keys)
new_hypernetwork_initialization_option=gr.Dropdown(value="Normal",label="Select Layer weights initialization. Normal is default, for experiments, relu-like - Kaiming, sigmoid-like - Xavier is recommended",choices=["Normal","KaimingUniform","KaimingNormal","XavierUniform","XavierNormal"])