Code Referencecareamicsconfigsupport supported_architectures supported_architectures Architectures supported by CAREamics. SupportedArchitecture # Bases: str, BaseEnum Supported architectures. Source code in src/careamics/config/support/supported_architectures.py 6 7 8 9 10 11 12 13class SupportedArchitecture(str, BaseEnum): """Supported architectures.""" UNET = "UNet" """UNet architecture used with N2V, CARE and Noise2Noise.""" LVAE = "LVAE" """Ladder Variational Autoencoder used for muSplit and denoiSplit.""" LVAE = 'LVAE' class-attribute instance-attribute # Ladder Variational Autoencoder used for muSplit and denoiSplit. UNET = 'UNet' class-attribute instance-attribute # UNet architecture used with N2V, CARE and Noise2Noise. P N