1、l2_normalize函数 tf.nn.l2_normalize(x, dim, epsilon=1e-12, name=None) 解释:这个函数的作用是利用 L2 范数对指定维度 dim 进行标准化。 比如,对于一个一维的张量,指定维度 dim = 0,那么计算结果为: output = ...
分类:
其他好文 时间:
2017-07-22 21:13:12
阅读次数:
349
1、l2_loss函数 tf.nn.l2_loss(t, name=None) 解释:这个函数的作用是利用 L2 范数来计算张量的误差值,但是没有开方并且只取 L2 范数的值的一半,具体如下: output = sum(t ** 2) / 2 2、tensorflow实现 输入参数: t: 一个Te ...
分类:
其他好文 时间:
2017-07-22 21:02:03
阅读次数:
124
本次案例需要大家了解关于手写数字识别(mnist)的数据集的特点和结构: 输出: Test 196 Prediction: 7 True Class: 9Test 197 Prediction: 9 True Class: 9Test 198 Prediction: 1 True Class: 9T ...
分类:
编程语言 时间:
2017-07-22 21:00:08
阅读次数:
208
输出结果: bias_add:[[ 2. 0.] [ 3. 1.] [ 4. 2.]]add:[[ 2. 2.] [ 3. 3.] [ 4. 4.]] ...
分类:
其他好文 时间:
2017-07-22 19:53:46
阅读次数:
176
参考:http://www.jianshu.com/p/e112012a4b2d ...
分类:
其他好文 时间:
2017-07-22 18:20:12
阅读次数:
124
1、softsign函数 图像 2、tensorflow softsign应用 输出结果: input:[ 0. -1. 2. -30. 30.]output:[ 0. -0.5 0.66666669 -0.96774191 0.96774191] ...
分类:
其他好文 时间:
2017-07-22 12:00:48
阅读次数:
1186
1、elu函数 图像: 2、tensorflow elu应用 输出结果: input:[ 0. -1. 2. -3.]output:[ 0. -0.63212055 2. -0.95021296] ...
分类:
其他好文 时间:
2017-07-22 11:03:54
阅读次数:
318
1、softplus函数表达式 图像: 2、tensorflow 举例 输出结果: input:[ 0. 1. 2. 3.]output:[ 0.69314718 1.31326163 2.12692809 3.04858732] ...
分类:
其他好文 时间:
2017-07-22 11:01:23
阅读次数:
2473
1、tanh()函数 tanh是双曲函数中的一个,tanh()为双曲正切。 双曲正切函数的导数公式: 2、tensorflow tanh()例子 import tensorflow as tf input=tf.constant([1,2,3,4],dtype=tf.float32) #在tenso ...
分类:
其他好文 时间:
2017-07-22 09:50:40
阅读次数:
160
tf.nn.conv2d(input, filter, strides, padding, use_cudnn_on_gpu=None, data_format=None, name=None) 官方教程说明: 给定四维的input和filter tensor,计算一个二维卷积 input: A T ...
分类:
其他好文 时间:
2017-07-22 00:42:35
阅读次数:
799