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
1bd57cc9
Commit
1bd57cc9
authored
Nov 23, 2022
by
flamelaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
last_layer_dropout default to False
parent
d2c97fc3
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 @
1bd57cc9
...
@@ -38,7 +38,7 @@ class HypernetworkModule(torch.nn.Module):
...
@@ -38,7 +38,7 @@ class HypernetworkModule(torch.nn.Module):
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'
})
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'
,
def
__init__
(
self
,
dim
,
state_dict
=
None
,
layer_structure
=
None
,
activation_func
=
None
,
weight_init
=
'Normal'
,
add_layer_norm
=
False
,
use_dropout
=
False
,
activate_output
=
False
,
last_layer_dropout
=
Tru
e
):
add_layer_norm
=
False
,
use_dropout
=
False
,
activate_output
=
False
,
last_layer_dropout
=
Fals
e
):
super
()
.
__init__
()
super
()
.
__init__
()
assert
layer_structure
is
not
None
,
"layer_structure must not be None"
assert
layer_structure
is
not
None
,
"layer_structure must not be None"
...
...
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