Skip to content Skip to sidebar Skip to footer
Showing posts with the label Initializer

Using Weights Initializer With Tf.nn.conv2d

When using tf.layers.conv2d, setting the initializer is easy, it can be done through its parameter.… Read more Using Weights Initializer With Tf.nn.conv2d

When Global_variables_initializer() Is Actually Required

import tensorflow as tf x = tf.constant(35, name='x') y = tf.Variable(x + 5, name='y… Read more When Global_variables_initializer() Is Actually Required