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)

100个句子记完7000个托福单词 句子部分(英文)

English part.

  1. Essentially, a theory is an abstract, symbolic representation of what is conceived to be reality.
  2. Thanks to modern irrigation, crops now grow abundantly in areas where once nothing but cacti and sagebrush could live.
  3. Ahthropologists have discovered that fear, happiness, sadness, and surprise are universally reflected in facial expression.
  4. Of the millions who saw Haley’s Comet in 1986, how many people will live long enough to see it return in the twenty-first century.
  5. The greater the population there is in a locality, the greater the need there is for water, transportation, and disposal of refuse.

100个句子记完7000个托福单词 句子部分(中文)

要好好学英语…把这本书的句子部分背一遍,在博客把中分英文分开打以便方便对照记忆。

  1. 理论在本质上是对人们构想的现实的一种抽象和符号化的表示。
  2. 受当代灌溉设施之赐,在原来只有仙人掌和灌木蒿才能生存的地方,现在农作物也生长茂盛。
  3. 人类学家已经发现,恐惧、快乐、悲伤和惊奇会反映在面部表情上,这在全人类是共通的。
  4. 1986年看见哈雷彗星的千百万人当中,有多少人能够长寿到足以目睹它在21世纪的回归呢?
  5. 一个地方的人口越多,其对水、交通和垃圾处理的需求就会越大。

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server
Your browser is out-of-date!

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

×