Here is the code snippet from the cifar10 tutorial. This is from cifar10.py.
# conv1 with tf.variable_scope('conv1') as scope: kernel = _variable_with_weight_decay('weights', shape=[5, 5, 3, 64], stddev=1e-4, wd=0.0) conv = tf.nn.conv2d(images, kernel, [1, 1, 1, 1], padding='SAME') biases = _variable_on_cpu('biases', [64], tf.constant_initializer(0.0)) bias = tf.nn.bias_add(conv, biases) conv1 = tf.nn.relu(bias, name=scope.name) _activation_summary(conv1)
What does tf.nn.lrn-Method do? I can't find the definition in the API documentation at https://www.tensorflow.org/versions/r0.8/api_docs/python/index.html
tensorflow
Simon
source share