b43325e297498269be86b281a02e2ef79664f273,train_variational_autoencoder_tensorflow.py,,generative_network,#Any#Any#,66
Before Change
Returns:
bernoulli_logits: logits for the Bernoulli likelihood of the data
with slim.arg_scope([slim. fully_connected], activation_fn=tf.nn.relu):
net = slim.fully_connected(z, hidden_size)
net = slim.fully_connected(net, hidden_size)
bernoulli_logits = slim.fully_connected(net, 784, activation_fn=None)
bernoulli_logits = tf.reshape(bernoulli_logits, [-1, 28, 28, 1])
return bernoulli_logits
After Change
Returns:
bernoulli_logits: logits for the Bernoulli likelihood of the data
generative_net = tfk.Sequential([
tfkl.Dense(hidden_size, activation=tf.nn.relu),
tfkl.Dense(hidden_size, activation=tf.nn.relu),
tfkl.Dense(28 * 28, activation=None)
])
bernoulli_logits = generative_net(z)
return tf.reshape(bernoulli_logits, [-1, 28, 28, 1])
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 6
Instances Project Name: altosaar/variational-autoencoder
Commit Name: b43325e297498269be86b281a02e2ef79664f273
Time: 2019-09-18
Author: altosaar@users.noreply.github.com
File Name: train_variational_autoencoder_tensorflow.py
Class Name:
Method Name: generative_network
Project Name: altosaar/variational-autoencoder
Commit Name: b43325e297498269be86b281a02e2ef79664f273
Time: 2019-09-18
Author: altosaar@users.noreply.github.com
File Name: train_variational_autoencoder_tensorflow.py
Class Name:
Method Name: inference_network
Project Name: tensorflow/cleverhans
Commit Name: da4a59ef9f475ed3e7f9afe2df1ceb33960f483c
Time: 2017-08-02
Author: andrew@vermonster.com
File Name: tests_tf/test_attacks_tf.py
Class Name: TestAttacksTF
Method Name: test_jsma_batch_with_feed
Project Name: altosaar/variational-autoencoder
Commit Name: b43325e297498269be86b281a02e2ef79664f273
Time: 2019-09-18
Author: altosaar@users.noreply.github.com
File Name: train_variational_autoencoder_tensorflow.py
Class Name:
Method Name: generative_network