Пример #1
0
 def __init__(self):
     super().__init__(derivatives=Conv3DDerivatives(),
                      params=["bias", "weight"])
Пример #2
0
 def __init__(self):
     """Initialization."""
     super().__init__(["bias", "weight"], derivatives=Conv3DDerivatives())
Пример #3
0
 def __init__(self):
     """Pass derivatives for ``torch.nn.Conv3d`` module."""
     super().__init__(Conv3DDerivatives(), params=["bias", "weight"])
Пример #4
0
 def __init__(self):
     """Store parameter names and derivatives object."""
     super().__init__(derivatives=Conv3DDerivatives(),
                      params=["bias", "weight"])