| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| """ |
| Defines factories for creating layers in generic, extensible, and dimensionally independent ways. A separate factory |
| object is created for each type of layer, and factory functions keyed to names are added to these objects. Whenever |
| a layer is requested the factory name and any necessary arguments are passed to the factory object. The return value |
| is typically a type but can be any callable producing a layer object. |
| |
| The factory objects contain functions keyed to names converted to upper case, these names can be referred to as members |
| of the factory so that they can function as constant identifiers. eg. instance normalisation is named `Norm.INSTANCE`. |
| |
| For example, to get a transpose convolution layer the name is needed and then a dimension argument is provided which is |
| passed to the factory function: |
| |
| .. code-block:: python |
| |
| dimension = 3 |
| name = Conv.CONVTRANS |
| conv = Conv[name, dimension] |
| |
| This allows the `dimension` value to be set in the constructor, for example so that the dimensionality of a network is |
| parameterizable. Not all factories require arguments after the name, the caller must be aware which are required. |
| |
| Defining new factories involves creating the object then associating it with factory functions: |
| |
| .. code-block:: python |
| |
| fact = LayerFactory() |
| |
| @fact.factory_function('test') |
| def make_something(x, y): |
| # do something with x and y to choose which layer type to return |
| return SomeLayerType |
| ... |
| |
| # request object from factory TEST with 1 and 2 as values for x and y |
| layer = fact[fact.TEST, 1, 2] |
| |
| Typically the caller of a factory would know what arguments to pass (ie. the dimensionality of the requested type) but |
| can be parameterized with the factory name and the arguments to pass to the created type at instantiation time: |
| |
| .. code-block:: python |
| |
| def use_factory(fact_args): |
| fact_name, type_args = split_args |
| layer_type = fact[fact_name, 1, 2] |
| return layer_type(**type_args) |
| ... |
| |
| kw_args = {'arg0':0, 'arg1':True} |
| layer = use_factory( (fact.TEST, kwargs) ) |
| """ |
|
|
| from typing import Any, Callable, Dict, Tuple, Type, Union |
|
|
| import torch.nn as nn |
|
|
| __all__ = ["LayerFactory", "Dropout", "Norm", "Act", "Conv", "Pool", "split_args"] |
|
|
|
|
| class LayerFactory: |
| """ |
| Factory object for creating layers, this uses given factory functions to actually produce the types or constructing |
| callables. These functions are referred to by name and can be added at any time. |
| """ |
|
|
| def __init__(self) -> None: |
| self.factories: Dict[str, Callable] = {} |
|
|
| @property |
| def names(self) -> Tuple[str, ...]: |
| """ |
| Produces all factory names. |
| """ |
|
|
| return tuple(self.factories) |
|
|
| def add_factory_callable(self, name: str, func: Callable) -> None: |
| """ |
| Add the factory function to this object under the given name. |
| """ |
|
|
| self.factories[name.upper()] = func |
| self.__doc__ = ( |
| "The supported member" |
| + ("s are: " if len(self.names) > 1 else " is: ") |
| + ", ".join(f"``{name}``" for name in self.names) |
| + ".\nPlease see :py:class:`monai.networks.layers.split_args` for additional args parsing." |
| ) |
|
|
| def factory_function(self, name: str) -> Callable: |
| """ |
| Decorator for adding a factory function with the given name. |
| """ |
|
|
| def _add(func: Callable) -> Callable: |
| self.add_factory_callable(name, func) |
| return func |
|
|
| return _add |
|
|
| def get_constructor(self, factory_name: str, *args) -> Any: |
| """ |
| Get the constructor for the given factory name and arguments. |
| |
| Raises: |
| TypeError: When ``factory_name`` is not a ``str``. |
| |
| """ |
|
|
| if not isinstance(factory_name, str): |
| raise TypeError(f"factory_name must a str but is {type(factory_name).__name__}.") |
|
|
| fact = self.factories[factory_name.upper()] |
| return fact(*args) |
|
|
| def __getitem__(self, args) -> Any: |
| """ |
| Get the given name or name/arguments pair. If `args` is a callable it is assumed to be the constructor |
| itself and is returned, otherwise it should be the factory name or a pair containing the name and arguments. |
| """ |
|
|
| |
| if callable(args): |
| return args |
|
|
| |
| if isinstance(args, str): |
| name_obj, args = args, () |
| else: |
| name_obj, *args = args |
|
|
| return self.get_constructor(name_obj, *args) |
|
|
| def __getattr__(self, key): |
| """ |
| If `key` is a factory name, return it, otherwise behave as inherited. This allows referring to factory names |
| as if they were constants, eg. `Fact.FOO` for a factory Fact with factory function foo. |
| """ |
|
|
| if key in self.factories: |
| return key |
|
|
| return super().__getattribute__(key) |
|
|
|
|
| def split_args(args): |
| """ |
| Split arguments in a way to be suitable for using with the factory types. If `args` is a string it's interpreted as |
| the type name. |
| |
| Args: |
| args (str or a tuple of object name and kwarg dict): input arguments to be parsed. |
| |
| Raises: |
| TypeError: When ``args`` type is not in ``Union[str, Tuple[Union[str, Callable], dict]]``. |
| |
| Examples:: |
| |
| >>> act_type, args = split_args("PRELU") |
| >>> monai.networks.layers.Act[act_type] |
| <class 'torch.nn.modules.activation.PReLU'> |
| |
| >>> act_type, args = split_args(("PRELU", {"num_parameters": 1, "init": 0.25})) |
| >>> monai.networks.layers.Act[act_type](**args) |
| PReLU(num_parameters=1) |
| |
| """ |
|
|
| if isinstance(args, str): |
| return args, {} |
| else: |
| name_obj, name_args = args |
|
|
| if not isinstance(name_obj, (str, Callable)) or not isinstance(name_args, dict): |
| msg = "Layer specifiers must be single strings or pairs of the form (name/object-types, argument dict)" |
| raise TypeError(msg) |
|
|
| return name_obj, name_args |
|
|
|
|
| |
|
|
| Dropout = LayerFactory() |
| Norm = LayerFactory() |
| Act = LayerFactory() |
| Conv = LayerFactory() |
| Pool = LayerFactory() |
| Pad = LayerFactory() |
|
|
|
|
| @Dropout.factory_function("dropout") |
| def dropout_factory(dim: int) -> Type[Union[nn.Dropout, nn.Dropout2d, nn.Dropout3d]]: |
| types = (nn.Dropout, nn.Dropout2d, nn.Dropout3d) |
| return types[dim - 1] |
|
|
|
|
| @Norm.factory_function("instance") |
| def instance_factory(dim: int) -> Type[Union[nn.InstanceNorm1d, nn.InstanceNorm2d, nn.InstanceNorm3d]]: |
| types = (nn.InstanceNorm1d, nn.InstanceNorm2d, nn.InstanceNorm3d) |
| return types[dim - 1] |
|
|
|
|
| @Norm.factory_function("batch") |
| def batch_factory(dim: int) -> Type[Union[nn.BatchNorm1d, nn.BatchNorm2d, nn.BatchNorm3d]]: |
| types = (nn.BatchNorm1d, nn.BatchNorm2d, nn.BatchNorm3d) |
| return types[dim - 1] |
|
|
|
|
| Norm.add_factory_callable("group", lambda: nn.modules.GroupNorm) |
| Act.add_factory_callable("elu", lambda: nn.modules.ELU) |
| Act.add_factory_callable("relu", lambda: nn.modules.ReLU) |
| Act.add_factory_callable("leakyrelu", lambda: nn.modules.LeakyReLU) |
| Act.add_factory_callable("prelu", lambda: nn.modules.PReLU) |
| Act.add_factory_callable("relu6", lambda: nn.modules.ReLU6) |
| Act.add_factory_callable("selu", lambda: nn.modules.SELU) |
| Act.add_factory_callable("celu", lambda: nn.modules.CELU) |
| Act.add_factory_callable("gelu", lambda: nn.modules.GELU) |
| Act.add_factory_callable("sigmoid", lambda: nn.modules.Sigmoid) |
| Act.add_factory_callable("tanh", lambda: nn.modules.Tanh) |
| Act.add_factory_callable("softmax", lambda: nn.modules.Softmax) |
| Act.add_factory_callable("logsoftmax", lambda: nn.modules.LogSoftmax) |
|
|
|
|
| @Conv.factory_function("conv") |
| def conv_factory(dim: int) -> Type[Union[nn.Conv1d, nn.Conv2d, nn.Conv3d]]: |
| types = (nn.Conv1d, nn.Conv2d, nn.Conv3d) |
| return types[dim - 1] |
|
|
|
|
| @Conv.factory_function("convtrans") |
| def convtrans_factory(dim: int) -> Type[Union[nn.ConvTranspose1d, nn.ConvTranspose2d, nn.ConvTranspose3d]]: |
| types = (nn.ConvTranspose1d, nn.ConvTranspose2d, nn.ConvTranspose3d) |
| return types[dim - 1] |
|
|
|
|
| @Pool.factory_function("max") |
| def maxpooling_factory(dim: int) -> Type[Union[nn.MaxPool1d, nn.MaxPool2d, nn.MaxPool3d]]: |
| types = (nn.MaxPool1d, nn.MaxPool2d, nn.MaxPool3d) |
| return types[dim - 1] |
|
|
|
|
| @Pool.factory_function("adaptivemax") |
| def adaptive_maxpooling_factory( |
| dim: int, |
| ) -> Type[Union[nn.AdaptiveMaxPool1d, nn.AdaptiveMaxPool2d, nn.AdaptiveMaxPool3d]]: |
| types = (nn.AdaptiveMaxPool1d, nn.AdaptiveMaxPool2d, nn.AdaptiveMaxPool3d) |
| return types[dim - 1] |
|
|
|
|
| @Pool.factory_function("avg") |
| def avgpooling_factory(dim: int) -> Type[Union[nn.AvgPool1d, nn.AvgPool2d, nn.AvgPool3d]]: |
| types = (nn.AvgPool1d, nn.AvgPool2d, nn.AvgPool3d) |
| return types[dim - 1] |
|
|
|
|
| @Pool.factory_function("adaptiveavg") |
| def adaptive_avgpooling_factory( |
| dim: int, |
| ) -> Type[Union[nn.AdaptiveAvgPool1d, nn.AdaptiveAvgPool2d, nn.AdaptiveAvgPool3d]]: |
| types = (nn.AdaptiveAvgPool1d, nn.AdaptiveAvgPool2d, nn.AdaptiveAvgPool3d) |
| return types[dim - 1] |
|
|
|
|
| @Pad.factory_function("replicationpad") |
| def replication_pad_factory(dim: int) -> Type[Union[nn.ReplicationPad1d, nn.ReplicationPad2d, nn.ReplicationPad3d]]: |
| types = (nn.ReplicationPad1d, nn.ReplicationPad2d, nn.ReplicationPad3d) |
| return types[dim - 1] |
|
|
|
|
| @Pad.factory_function("constantpad") |
| def constant_pad_factory(dim: int) -> Type[Union[nn.ConstantPad1d, nn.ConstantPad2d, nn.ConstantPad3d]]: |
| types = (nn.ConstantPad1d, nn.ConstantPad2d, nn.ConstantPad3d) |
| return types[dim - 1] |
|
|