Skip to content
Snippets Groups Projects
Commit 6981317d authored by Guillaume HEUSCH's avatar Guillaume HEUSCH
Browse files

[architectures] added ConditionalGAN in __init__.py

parent 6807ce27
No related branches found
No related tags found
1 merge request!4Resolve "Add GANs"
......@@ -3,7 +3,12 @@ from .CASIANet import CASIANet
from .DCGAN import DCGAN_generator
from .DCGAN import DCGAN_discriminator
from .DCGAN import weights_init
from .ConditionalGAN import ConditionalGAN_generator
from .ConditionalGAN import ConditionalGAN_discriminator
from .utils import weights_init
# gets sphinx autodoc done right - don't remove it
__all__ = [_ for _ in dir() if not _.startswith('_')]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment