TensorFlow实战Google深度学习框架 笔记 第四章

去线性化

TensorFlow提供七种非线性激活函数,tf.nn.relu, tf.sigmoid, tf.tanh最为常见。




加入偏置项和激活函数的神经网络结构图

TensorFlow实战Google深度学习框架 笔记 第二、三章

第二章 TensorFlow 环境搭建

简单示例代码:

1
2
3
4
5
6
7
8
import tensorflow as tf
a = tf.constant([1.0, 2.0], name="a")
b = tf.constant([2.0, 3.0], name="b")
result = a + b
sess = tf.Session()
sess.run(result)
---输出---
array([3., 5.], dtype=float32)

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×