Difference between revisions of "Tensorflow Guide"
From Storrs HPC Wiki
(→Current Supported Versions in HPC) |
(→Import Modules) |
||
Line 26: | Line 26: | ||
=Import Modules= | =Import Modules= | ||
+ | ==TensorFlow v0.10.0rc0== | ||
+ | module load python/2.7.6 | ||
− | module load python/2.7.6-gcc-unicode | + | ==TensorFlow v0.12.1== |
+ | module load python/2.7.6-gcc-unicode | ||
=Application Usage= | =Application Usage= |
Revision as of 13:20, 10 April 2017
Tensorflow | |
---|---|
Author | Google Brain Team |
Website | https://www.tensorflow.org/ |
Source | HistoryVersions |
Category | Machine Learning, Deep Neural Networks |
Help | documentation |
Contents
Current Supported Versions in HPC
Supported CPU Version | Corresponding Python Module | Released Date |
---|---|---|
v0.10.0rc0 | python/2.7.6 | Jul 29, 2016 |
v0.12.1 | python/2.7.6-gcc-unicode | Dec 25, 2016 |
Supported GPU Version | Corresponding Python Module | Released Date |
---|---|---|
- | - | - |
Import Modules
TensorFlow v0.10.0rc0
module load python/2.7.6
TensorFlow v0.12.1
module load python/2.7.6-gcc-unicode
Application Usage
Python
$ python Python 2.7.6 (default, Apr 20 2016, 16:39:52) [GCC 4.8.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import tensorflow as tf >>> print tf.__version__ 0.12.1 >>>
<nowiki></nowiki>