45db0508379d807a472df7ef4fb007876f52a6f4,examples/2d-test.py,,custom_generator,#Any#Any#Any#,65
Before Change
def custom_generator(config, gan, net):
net = linear(net, 128, scope="g_lin_proj")
net = batch_norm_1(gan.config.batch_size, name="g_bn_1")(net)
net = tf.nn.relu(net)
net = linear(net, 2, scope="g_lin_proj3")
net = tf.tanh(net)
return [net]
After Change
def custom_generator(config, gan, net):
net = linear(net, 128, scope="g_lin_proj")
for i in range(24):
net = tf.nn.crelu(net)
net = linear(net, 128, scope="g_lin"+str(i))
net = tf.nn.crelu(net)
net = linear(net, 2, scope="g_lin_proj3")
net = tf.tanh(net)
return [net]
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 12
Instances
Project Name: HyperGAN/HyperGAN
Commit Name: 45db0508379d807a472df7ef4fb007876f52a6f4
Time: 2017-03-25
Author: martyn@255bits.com
File Name: examples/2d-test.py
Class Name:
Method Name: custom_generator
Project Name: HyperGAN/HyperGAN
Commit Name: 45db0508379d807a472df7ef4fb007876f52a6f4
Time: 2017-03-25
Author: martyn@255bits.com
File Name: examples/2d-measure-accuracy.py
Class Name:
Method Name: custom_generator
Project Name: HyperGAN/HyperGAN
Commit Name: 67618385d1aa6517ba3abce2570841c057cf584a
Time: 2017-03-16
Author: martyn@255bits.com
File Name: examples/2d-measure-accuracy.py
Class Name:
Method Name: custom_generator
Project Name: HyperGAN/HyperGAN
Commit Name: 67618385d1aa6517ba3abce2570841c057cf584a
Time: 2017-03-16
Author: martyn@255bits.com
File Name: examples/2d-test.py
Class Name:
Method Name: custom_generator