MCPcopy Create free account
hub / github.com/10Ring/LAA-Net / __init__

Method __init__

models/networks/pose_hrnet.py:91–106  ·  view source on GitHub ↗
(self, num_branches, blocks, num_blocks, num_inchannels,
                 num_channels, fuse_method, multi_scale_output=True)

Source from the content-addressed store, hash-verified

89
90class HighResolutionModule(nn.Module):
91 def __init__(self, num_branches, blocks, num_blocks, num_inchannels,
92 num_channels, fuse_method, multi_scale_output=True):
93 super(HighResolutionModule, self).__init__()
94 self._check_branches(
95 num_branches, blocks, num_blocks, num_inchannels, num_channels)
96
97 self.num_inchannels = num_inchannels
98 self.fuse_method = fuse_method
99 self.num_branches = num_branches
100
101 self.multi_scale_output = multi_scale_output
102
103 self.branches = self._make_branches(
104 num_branches, blocks, num_blocks, num_channels)
105 self.fuse_layers = self._make_fuse_layers()
106 self.relu = nn.ReLU(True)
107
108 def _check_branches(self, num_branches, blocks, num_blocks,
109 num_inchannels, num_channels):

Callers

nothing calls this directly

Calls 4

_check_branchesMethod · 0.95
_make_branchesMethod · 0.95
_make_fuse_layersMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected