Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stable-diffusion-webui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
stable-diffusion-webui
Commits
7207e3bf
Commit
7207e3bf
authored
Oct 25, 2022
by
AngelBottomless
Committed by
AUTOMATIC1111
Oct 26, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove duplicate keys and lowercase
parent
de096d0c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
hypernetwork.py
modules/hypernetworks/hypernetwork.py
+1
-1
No files found.
modules/hypernetworks/hypernetwork.py
View file @
7207e3bf
...
...
@@ -32,7 +32,7 @@ class HypernetworkModule(torch.nn.Module):
"tanh"
:
torch
.
nn
.
Tanh
,
"sigmoid"
:
torch
.
nn
.
Sigmoid
,
}
activation_dict
.
update
({
cls_name
:
cls_obj
for
cls_name
,
cls_obj
in
inspect
.
getmembers
(
torch
.
nn
.
modules
.
activation
)
if
inspect
.
isclass
(
cls_obj
)
and
cls_obj
.
__module__
==
'torch.nn.modules.activation'
})
activation_dict
.
update
({
cls_name
.
lower
()
:
cls_obj
for
cls_name
,
cls_obj
in
inspect
.
getmembers
(
torch
.
nn
.
modules
.
activation
)
if
inspect
.
isclass
(
cls_obj
)
and
cls_obj
.
__module__
==
'torch.nn.modules.activation'
})
def
__init__
(
self
,
dim
,
state_dict
=
None
,
layer_structure
=
None
,
activation_func
=
None
,
weight_init
=
'Normal'
,
add_layer_norm
=
False
,
use_dropout
=
False
):
super
()
.
__init__
()
...
...
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