Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
f8733ad0
Commit
f8733ad0
authored
Oct 20, 2022
by
discus0434
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add linear as a act func (option for doin nothing)
parent
6b38c2c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/ui.py
modules/ui.py
+1
-1
No files found.
modules/ui.py
View file @
f8733ad0
...
...
@@ -1224,7 +1224,7 @@ def create_ui(wrap_gradio_gpu_call):
new_hypernetwork_sizes
=
gr
.
CheckboxGroup
(
label
=
"Modules"
,
value
=
[
"768"
,
"320"
,
"640"
,
"1280"
],
choices
=
[
"768"
,
"320"
,
"640"
,
"1280"
])
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"
)
new_hypernetwork_activation_func
=
gr
.
Dropdown
(
value
=
"relu"
,
label
=
"Select activation function of hypernetwork"
,
choices
=
[
"relu"
,
"leakyrelu"
])
new_hypernetwork_activation_func
=
gr
.
Dropdown
(
value
=
"relu"
,
label
=
"Select activation function of hypernetwork"
,
choices
=
[
"
linear"
,
"
relu"
,
"leakyrelu"
])
with
gr
.
Row
():
with
gr
.
Column
(
scale
=
3
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment