Skip to content

TensorFlow: a system for large-scale machine learning

Why this mattered

TensorFlow mattered because it reframed machine-learning infrastructure as a general distributed dataflow system rather than a specialized parameter-server framework. By representing computation, mutable model state, and state-updating operations in one graph, it let researchers and production engineers express training algorithms, inference pipelines, and deployment targets within a shared abstraction. The paper’s emphasis on heterogeneous execution across CPUs, GPUs, and TPUs was especially important: it made accelerator-aware machine learning a first-class systems problem, not an implementation detail hidden inside individual models.

This changed what could be built and shared after 2016. TensorFlow gave large-scale deep learning a portable, open-source substrate that connected research code to production services, lowering the barrier for training and deploying neural networks at industrial scale. Its graph model also encouraged optimization across whole computations, enabling scheduling, placement, automatic differentiation, and distributed execution to be handled by the system rather than repeatedly rebuilt by each application team.

Its broader significance was not that TensorFlow invented deep learning, but that it helped standardize the infrastructure expectations of the field: models should scale across devices, run in production, target specialized accelerators, and be distributed as reusable software artifacts. That infrastructure layer became a prerequisite for later breakthroughs in large vision, speech, translation, recommendation, and eventually foundation-model systems, where progress depended as much on scalable execution and deployment machinery as on model architecture.

Abstract

TensorFlow is a machine learning system that operates at large scale and in heterogeneous environments. Tensor-Flow 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 a focus on 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 and demonstrate the compelling performance that TensorFlow achieves for several real-world applications.

Sources