MCPcopy Create free account
hub / github.com/NVIDIA/semantic-segmentation / _make_branches

Method _make_branches

network/hrnetv2.py:172–179  ·  view source on GitHub ↗
(self, num_branches, block, num_blocks, num_channels)

Source from the content-addressed store, hash-verified

170 return nn.Sequential(*layers)
171
172 def _make_branches(self, num_branches, block, num_blocks, num_channels):
173 branches = []
174
175 for i in range(num_branches):
176 branches.append(
177 self._make_one_branch(i, block, num_blocks, num_channels))
178
179 return nn.ModuleList(branches)
180
181 def _make_fuse_layers(self):
182 if self.num_branches == 1:

Callers 1

__init__Method · 0.95

Calls 1

_make_one_branchMethod · 0.95

Tested by

no test coverage detected