OutHeadConv2D.add_module

OutHeadConv2D.add_module(name: str, module: Module | None) None[source]

Add a child module to the current module.

The module can be accessed as an attribute using the given name.

Args:
name (str): name of the child module. The child module can be

accessed from this module using the given name

module (Module): child module to be added to the module.