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

Method __init__

models/networks/pose_efficientNet.py:701–708  ·  view source on GitHub ↗
(self, model_name, in_channels=3, **override_params)

Source from the content-addressed store, hash-verified

699@MODELS.register_module()
700class PoseEfficientNet(EfficientNet):
701 def __init__(self, model_name, in_channels=3, **override_params):
702 self.model_name = model_name
703 self.in_channels = in_channels
704
705 # Initialize Parent Class
706 super()._check_model_name_is_valid(model_name)
707 blocks_args, global_params = get_model_params(model_name, override_params)
708 super().__init__(blocks_args, global_params)
709
710 @classmethod
711 def from_name(cls, model_name, in_channels, **override_params):

Callers

nothing calls this directly

Calls 3

get_model_paramsFunction · 0.85
__init__Method · 0.45

Tested by

no test coverage detected