nightly装TF是新的1.5 TF?

nightly installed TF is the new 1.5 TF?

今天听说有新版1.5 TF,对动态图的支持很好

而且我还发现有一种新的夜间安装方法。

所以这个夜间安装方法是安装新版本的 TF?

chg0901@ubuntu:~$ python3
Python 3.5.2 (default, Nov 23 2017, 16:37:01) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow as tf
2018-01-06 16:49:32.242801: I tensorflow/core/platform/s3/aws_logging.cc:53] Initializing Curl library
>>> print(tf.__version__)
1.6.0-dev20180105
>>> x = [[2.]]
>>> m = tf.matmul(x,x)
>>> print(m)
Tensor("MatMul:0", shape=(1, 1), dtype=float32)
>>> print(tf.Session().run(m))
2018-01-06 16:51:25.418750: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX FMA
[[ 4.]]

目前 TF 1.5.0rc0 已发布。您可以通过此命令安装最新版本的候选版本:

pip install tensorflow --pre

当你检查它的版本时,你会看到这样的东西:

> import tensorflow as tf
> tf.__version__
'1.5.0-rc0'

您的安装是每晚从 master 分支构建的 "nightly"。您看到的版本字符串 1.6.0-dev20180105 表示下一个版本是 1.6,它是基于 2018-01-05.

构建的