Difference between revisions of "Trinity"
From HPC users
Jump to navigationJump to search
Schwietzer (talk | contribs) |
Schwietzer (talk | contribs) |
||
Line 1: | Line 1: | ||
== Introduction == | == Introduction == | ||
Theano is a Python library that allows you to define, optimize, and evaluate mathematical expressions involving multi-dimensional arrays efficiently. Theano features: | |||
== Installed version == | == Installed version == |
Revision as of 09:20, 7 November 2018
Introduction
Theano is a Python library that allows you to define, optimize, and evaluate mathematical expressions involving multi-dimensional arrays efficiently. Theano features:
Installed version
Currently there is one version installed: On hpc-env/6.4
- Theano/1.0.1-foss-2017b-Python-3.6.3
Using Theano
To use Theano, at first you have to load the corresponding module.
module load hpc-env/6.4 module load Theano
Afterwards, you have to start Python and import Theano:
python from theano import *
Documentation
The full documentation can be found here. To learn how to use Theanos, you could also take a look at the tutorial.