Home/AI/TensorFlow
T
Capabilities:code
License:Apache-2.0
Open sourceLocal runtime

TensorFlow

About

Google's end-to-end machine learning platform for building, training and deploying models. Keras API, production serving with TF Serving, and mobile/edge support via Lite.

Pricing

Free

TensorFlow is Google's ML platform spanning research experimentation to large-scale production deployment. With the Keras API for authoring and TF Serving for deployment, it covers the full model lifecycle.

Key Features

  • Keras high-level API.
  • Eager execution with graph optimization.
  • TF Serving for production inference.
  • TensorFlow Lite for mobile and edge.
  • Distributed training across TPUs and GPUs.
  • TensorBoard visualization.

Pricing

TensorFlow is free and open source under Apache-2.0.

Getting Started

pip install tensorflow
import tensorflow as tf
model = tf.keras.Sequential([tf.keras.layers.Dense(10)])
model.compile(optimizer="adam")

Follow the tutorials at tensorflow.org/tutorials.