MH0386's picture
Upload folder using huggingface_hub
3e165b2 verified
raw
history blame contribute delete
301 Bytes
from typing import Union
from visualizr.model.unet import BeatGANsUNetConfig, BeatGANsUNetModel
from visualizr.model.unet_autoenc import BeatGANsAutoencConfig, BeatGANsAutoencModel
Model = Union[BeatGANsUNetModel, BeatGANsAutoencModel]
ModelConfig = Union[BeatGANsUNetConfig, BeatGANsAutoencConfig]