TensorFlow提供七种非线性激活函数,tf.nn.relu, tf.sigmoid, tf.tanh最为常见。
简单示例代码:12345678import tensorflow as tfa = tf.constant([1.0, 2.0], name="a")b = tf.constant([2.0, 3.0], name="b")result = a + bsess = tf.Session()sess.run(result)---输出---array([3., 5.], dtype=float32)
12345678
import tensorflow as tfa = tf.constant([1.0, 2.0], name="a")b = tf.constant([2.0, 3.0], name="b")result = a + bsess = tf.Session()sess.run(result)---输出---array([3., 5.], dtype=float32)
Daaliang
人生苦短, 及时行乐
深圳/成都
Posts
5
Categories
6
Tags
读书笔记 / TensorFlow实战Google深度学习框架
语言 / 英语
testct1 / testct2
Update your browser to view this website correctly. Update my browser now
×