3 Matching Annotations
- Jun 2018
-
jhui.github.io jhui.github.io
-
Generative adversarial nets (GAN) , DCGAN, CGAN, InfoGAN”
GAN
-
- May 2018
-
papers.nips.cc papers.nips.cc
-
Toward Multimodal Image-to-Image Translation
New thing
-
- Oct 2017
-
www.tensorflow.org www.tensorflow.org
-
TensorFlow provides optimizers that slowly change each variable in order to minimize the loss function. The simplest optimizer is gradient descent. It modifies each variable according to the magnitude of the derivative of loss with respect to that variable
Using Optimizer to auto estimate the parameters
optimizer = tf.train.GradientDescentOptimizer(0.01) train = optimizer.minimize(loss) sess.run(init) # reset values to incorrect defaults. for i in range(1000): sess.run( train, {x: [1, 2, 3, 4], y: [0, -1, -2, -3]}) print("...", sess.run([W, b]))
Tags
Annotators
URL
-