This document provides an overview of TensorFlow presented by Ashish Agarwal and Ashish Bansal. The key points covered include:
- TensorFlow is an open-source machine learning framework for research and production. It allows models to be deployed across different platforms.
- TensorFlow models are represented as dataflow graphs where nodes are operations and edges are tensors flowing between operations. Placeholders, variables, and sessions are introduced.
- Examples demonstrate basic linear regression and logistic regression models built with TensorFlow. Layers API and common neural network components like convolutions and RNNs are also covered.
- Advanced models like AlexNet, Inception, ResNet, and neural machine translation with attention are briefly overviewed.
Related topics: