반응형
tvars = tf.trainable_variables()
g_vars = [var for var in tvars if 'g_' in var.name]
g_trainer = tf.train.AdamOptimizer(0.0001).minimize(g_loss, var_list=g_vars)
'Deep Learning' 카테고리의 다른 글
[KERAS] how to install keras with tensorflow+anaconda+pycharm on windows10 (0) | 2018.01.29 |
---|---|
Experimental results of "Driving experience sharing method for end-to-end control of self-driving cars" (0) | 2018.01.19 |
[tensorflow] batch normalization code (0) | 2017.11.14 |
[image pre-processing] image normalization (0) | 2017.11.13 |
[data augmentation] random image flip left/right (0) | 2017.11.13 |