tensorflow
文章平均质量分 94
简牧
架构,大数据,机器学习,互联网金融,写有用的博客!
展开
-
tensorflow - 创建用户自定义Estimators
tf官网创建用户自定义estimator1.Pre-made vs. custom(预定义和自定义)如下图所示,预定义的Estimator是tf.estimator.Estimator类的子类,而自定义Estimators是tf.estimator.Estimator的一个实例:Figure1. Pre-made and custom Estimators are all Estimato...翻译 2019-01-06 23:22:58 · 971 阅读 · 0 评论 -
distributed tensorflow - tensorflow dev summit 2017
https://www.youtube.com/watch?v=la_M6bCV91M原创 2018-12-18 23:52:52 · 821 阅读 · 0 评论 -
tensorflow的graph和session基础
TensorFlow 使用数据流图将计算表示为独立的指令之间的依赖关系。这可生成低级别的编程模型,在该模型中,您首先定义数据流图,然后创建 TensorFlow 会话,以便在一组本地和远程设备上运行图的各个部分。为什么使用数据流图?数据流是一种用于并行计算的常用编程模型。在数据流图中,节点表示计算单元,边缘表示计算使用或产生的数据。例如,在 TensorFlow 图中,tf.matmul 操...转载 2018-12-11 00:16:08 · 6084 阅读 · 3 评论 -
分布式TensorFlow - 基于keras和kubernetes的分布式tensorflow训练
(TensorFlow @ O’Reilly AI Conference, San Francisco '18)整理自google tensorflow2018年9月参加的TensorFlow @ O’Reilly AI Conference,介绍的分布式tensorflow《Distributed TensorFlow training using Keras and Kubernetes》,...原创 2018-12-16 21:16:43 · 2146 阅读 · 0 评论 -
分布式tensorflow中变量和graph如何分配
Distributed TensorFlow allows us to share parts of a TensorFlow graph between multiple processes, possibly each on a different machine.Why might we want to do this? The classic use case is to harnes...转载 2018-12-20 00:56:55 · 692 阅读 · 0 评论 -
tensorflow的架构
tensorflow设计用于支持大规模分布式训练和预测,同时也足够灵活支持新模型和系统级优化。tensorflow是一种跨平台库,不同级别的用户级别代码(python c++ client)通过C API和核心的运行代码隔离。说明:client实现用户定义数据流图(dataflow graph),并通过tf.session来执行;Distributed Master通过Se...原创 2018-12-12 22:10:34 · 1154 阅读 · 0 评论 -
如何在使用TensorFlow Estimator API时自定义分布式训练
TensorFlow’s Estimator API provides an easy, high-level API to train machine learning models. You can use the train(), evaluate() or predict() methods on a Estimator. However, most often, training is ...转载 2019-01-07 18:54:29 · 3291 阅读 · 0 评论