Theano 2016

From HPC users
Revision as of 10:22, 7 November 2018 by Schwietzer (talk | contribs) (Created page with "== Introduction == Theano is a Python library that allows you to define, optimize, and evaluate mathematical expressions involving multi-dimensional arrays efficiently. Theano...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

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.