内容简介:TensorFlow 1.8.0-rc0 发布,此版本包括很多性能改进和bug修复。主要特性和改进包括: 主要特性和改进 Can now pass tf.contrib.distribute.MirroredStrategy() to tf.estimator.RunConfig() to run an Estim...
TensorFlow 1.8.0-rc0 发布,此版本包括很多性能改进和bug修复。主要特性和改进包括:
主要特性和改进
Can now pass
tf.contrib.distribute.MirroredStrategy()totf.estimator.RunConfig()to run an Estimator model on multiple GPUs on one machine.Add
tf.contrib.data.prefetch_to_device(), which supports prefetching to GPU memory.Added Gradient Boosted Trees as pre-made Estimators: BoostedTreesClassifier, BoostedTreesRegressor.
Add 3rd generation pipeline config for Cloud TPUs which improves performance and usability.
tf.contrib.bayesflowis moving out to it's own repo.Added
tf.contrib.{proto,rpc}to allow generic proto parsing and RPC communication.
Bug 修复和其他改变
tf.data:Add
tf.contrib.data.prefetch_to_device, which enables prefetching dataset elements to GPU memory.Add
tf.contrib.data.AUTOTUNE, which allows the tf.data runtime to automatically tune the prefetch buffer sizes based on your system and environment.Add
tf.contrib.data.make_csv_datasetfor building datasets of CSV files.Eager Execution:
With eager execution Datasets can now be used as standard python iterators (
for batch in dataset:). BothDataset.__iter__()andDataset.make_one_shot_iterator()can now be used to create iterators when eager execution is enabled.Automatic device placement has been enabled (i.e., use a GPU if available automatically, without requiring an explicit
with tf.device(“/gpu:0”)) (Fixes #14133)tf.GradientTapehas moved out of contrib.
完整内容请查看发布主页。
下载地址:
【声明】文章转载自:开源中国社区 [http://www.oschina.net]
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
UNIX系统编程: 通信、并发与线程
【美】Kay Robbins、Steve Robbins / 师蓉 / 电子工业出版社 / 2018-5 / 198
《UNIX系统编程: 通信、并发与线程》是一本基于最新UNIX标准的完备的参考书,对UNIX编程的要点进行了清晰易懂的介绍,从一些用于说明如何使用系统调用的短小代码段开始,逐渐过渡到能帮助读者扩展自己技能水平的实际项目中。《UNIX系统编程: 通信、并发与线程》中对通信、并发和线程问题进行了深入探讨,对复杂的概念(如信号和并发)进行了全面且清晰的解释,还覆盖了与文件、信号、信号量、POSIX线程和......一起来看看 《UNIX系统编程: 通信、并发与线程》 这本书的介绍吧!