Table of Contents |
---|
Introduction
TensorFlow is an open source software library for numerical computation using data flow graphs. Nodes in the graph represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) that flow between them. This flexible architecture lets you deploy computation to one or more CPUs or GPUs in a desktop, server, or mobile device without rewriting code. TensorFlow also includes TensorBoard, a data visualization toolkit.
Usage
No Format |
---|
module load anaconda/4.00py3.5
OR
module load anaconda/4.00py2.7 |
Installation
No Format |
---|
module load anaconda/4.00py3.5 conda install tensorflow python Python 3.5.4 |Anaconda custom (64-bit)| (default, Aug 14 2017, 13:26:58) [GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import tensorflow as tf >>> |
...