发布于 2017-07-02 23:56:39 | 262 次阅读 | 评论: 0 | 来源: 网友投递
这里有新鲜出炉的TensorFlow 官方文档中文版,程序狗速度看过来!
TensorFlow 机器学习系统
TensorFlow 是谷歌的第二代机器学习系统,按照谷歌所说,在某些基准测试中,TensorFlow的表现比第一代的DistBelief快了2倍。
TensorFlow 1.2.1 已发布,
该版本更新内容:
更新 markdow 版本要求为 > = 2.6.8
通过删除 min(max(..)) 以重新支持 tensors 作为 dropout rates
下载地址:
$ python
>>> import tensorflow as tf >>> hello = tf.constant('Hello, TensorFlow!') >>> sess = tf.Session() >>> sess.run(hello) 'Hello, TensorFlow!' >>> a = tf.constant(10) >>> b = tf.constant(32) >>> sess.run(a+b) 42 >>>