Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Andrei-Claudiu Roibu
BrainMapper
Commits
1de05ff6
Commit
1de05ff6
authored
Jul 10, 2020
by
Andrei Roibu
Browse files
corrected weight initiation for PReLU
parent
9f6e9cb1
Changes
1
Hide whitespace changes
Inline
Side-by-side
BrainMapperAE.py
View file @
1de05ff6
...
...
@@ -18,6 +18,7 @@ import numpy as np
import
torch
import
torch.nn
as
nn
import
utils.modules
as
modules
from
torch.nn.init
import
_calculate_fan_in_and_fan_out
as
calculate_fan
class
BrainMapperAE3D
(
nn
.
Module
):
...
...
@@ -214,5 +215,10 @@ class BrainMapperAE3D(nn.Module):
for
_
,
subsubmodule
in
submodule
.
named_children
():
if
isinstance
(
subsubmodule
,
(
torch
.
nn
.
PReLU
,
torch
.
nn
.
Dropout3d
,
torch
.
nn
.
MaxPool3d
))
==
False
:
subsubmodule
.
reset_parameters
()
if
isinstance
(
subsubmodule
,
(
torch
.
nn
.
Conv3d
,
torch
.
nn
.
ConvTranspose3d
)):
gain
=
np
.
sqrt
(
np
.
divide
(
2
,
1
+
np
.
power
(
0.25
,
2
)))
fan
,
_
=
calculate_fan
(
subsubmodule
.
weight
)
std
=
np
.
divide
(
gain
,
np
.
sqrt
(
fan
))
subsubmodule
.
weight
.
data
.
normal_
(
0
,
std
)
print
(
"Initialized network parameters!"
)
\ No newline at end of file
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