DCAIMay 27, 2016

TensorFlow: A system for large-scale machine learning

arXiv:1605.08695v219674 citationsHas Code
Originality Incremental advance
AI Analysis

This is a foundational system that addresses the problem of scalable and flexible machine learning for developers and researchers, enabling broad application across various domains.

The paper introduces TensorFlow, a machine learning system designed for large-scale and heterogeneous environments, which uses dataflow graphs to represent computation and state, enabling flexible experimentation with novel optimizations and training algorithms, and it has been widely adopted in production and research.

TensorFlow is a machine learning system that operates at large scale and in heterogeneous environments. TensorFlow uses dataflow graphs to represent computation, shared state, and the operations that mutate that state. It maps the nodes of a dataflow graph across many machines in a cluster, and within a machine across multiple computational devices, including multicore CPUs, general-purpose GPUs, and custom designed ASICs known as Tensor Processing Units (TPUs). This architecture gives flexibility to the application developer: whereas in previous "parameter server" designs the management of shared state is built into the system, TensorFlow enables developers to experiment with novel optimizations and training algorithms. TensorFlow supports a variety of applications, with particularly strong support for training and inference on deep neural networks. Several Google services use TensorFlow in production, we have released it as an open-source project, and it has become widely used for machine learning research. In this paper, we describe the TensorFlow dataflow model in contrast to existing systems, and demonstrate the compelling performance that TensorFlow achieves for several real-world applications.

Code Implementations2 repos
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes