Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

from hypergan.gans.standard_gan import StandardGAN 

from hypergan.ops.tensorflow.ops import TensorflowOps 

 

def gan_factory(*args, **kw_args): 

if 'config' in kw_args: 

config = kw_args['config'] 

elif len(args) > 0: 

config = args[0] 

else: 

config = None 

if config and 'class' in config: 

return TensorflowOps.lookup_function(None, config['class'])(*args, **kw_args) 

else: 

return StandardGAN(*args, **kw_args) 

 

GAN=gan_factory