Difference between revisions of "Tensorflow Guide"
From Storrs HPC Wiki
Line 15: | Line 15: | ||
=Import Modules= | =Import Modules= | ||
− | module load python/2.7.6-gcc-unicode | + | module load python/2.7.6-gcc-unicode |
+ | |||
+ | =Application Usage= | ||
+ | |||
+ | $ 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>[[Category:Software]]</nowiki> | <nowiki>[[Category:Software]]</nowiki> |
Revision as of 13:01, 10 April 2017
Tensorflow | |
---|---|
Author | Google Brain Team |
Website | https://www.tensorflow.org/ |
Source | HistoryVersions |
Category | Machine Learning, Deep Neural Networks |
Help | documentation |
Current Supported Versions in HPC
v0.12.1 cpu version (released by Dec 25, 2016)
Import Modules
module load python/2.7.6-gcc-unicode
Application Usage
$ 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>