Tutorial

Let us start an interactive session (e.g. with python or ipython) and import Theano.

  1. >>> from theano import *

Several of the symbols you will need to use are in the tensor subpackageof Theano. Let us import that subpackage under a handy name likeT (the tutorials will frequently use this convention).

  1. >>> import theano.tensor as T

If that succeeded you are ready for the tutorial, otherwise check yourinstallation (see Installing Theano).

Throughout the tutorial, bear in mind that there is a Glossary as wellas index and modules links in the upper-right corner of each page to helpyou out.

Prerequisites

Basics

Advanced

Advanced configuration and debugging

Further readings