"applications/llm/bin/tio/Cargo.lock" did not exist on "2e4095658715a1a6694e7f655455b09728a4ec99"
__init__.py 311 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
# Copyright (c) OpenMMLab. All rights reserved.
from .base_translation_model import BaseTranslationModel
from .cyclegan import CycleGAN
from .pix2pix import Pix2Pix
from .static_translation_gan import StaticTranslationGAN

__all__ = [
    'Pix2Pix', 'CycleGAN', 'BaseTranslationModel', 'StaticTranslationGAN'
]