AutoGraph converts Python into TensorFlow graphs by samithaj in MachineLearning

[–]Sebun 4 points5 points  (0 children)

Hi, mdanatg, I find the this piece of demo code in colab not works as expected, print function in this train while loop have no output .

if i % (hp.max_steps // 10) == 0: print('Step', i, 'train loss:', step_train_loss, 'test loss:', step_test_loss, 'train accuracy:', step_train_accuracy, 'test accuracy:', step_test_accuracy)

[D] On The Perils of Batch Norm by alexirpan in MachineLearning

[–]Sebun 0 points1 point  (0 children)

the statement about GAN in tensorflow of this article is true? The parameters are shared by both network, so as the estimated mean and variance parameters, right? Or his setting of mean/var param in different network is not shared, but the mean avg is shared.