MCPcopy Create free account
hub / github.com/DIVE128/DMVSNet / init_bn

Function init_bn

networks/module.py:11–16  ·  view source on GitHub ↗
(module)

Source from the content-addressed store, hash-verified

9
10
11def init_bn(module):
12 if module.weight is not None:
13 nn.init.ones_(module.weight)
14 if module.bias is not None:
15 nn.init.zeros_(module.bias)
16 return
17
18
19def init_uniform(module, init_method):

Callers 4

init_weightsMethod · 0.85
init_weightsMethod · 0.85
init_weightsMethod · 0.85
init_weightsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected