mapping_networks.registry.MAPPER_REGISTRY

mapping_networks.registry.MAPPER_REGISTRY: Registry[BaseMapper] = Registry('MAPPER_REGISTRY', keys=('mlp', 'residual_mlp'))

Named registry for pluggable mapping-network components.

Each registry maps string keys to classes. Built-in implementations are pre-registered; users add custom types with register().

Example:

from mapping_networks.registry import MAPPER_REGISTRY

MAPPER_REGISTRY.register("my_mapper", MyCustomMapper)
cls = MAPPER_REGISTRY.get("my_mapper")