API Documentation

This documentation covers Theano module-wise. This is suited to finding the Types and Ops that you can use to build and compile expression graphs.

There are also some top-level imports that you might find more convenient:

theano.function(...)[source]

Alias for theano.compile.function.function()

theano.function_dump(...)[source]

Alias for theano.compile.function.function_dump()

theano.shared(...)[source]

Alias for theano.compile.sharedvalue.shared()

class theano.In[source]

Alias for function.In

theano.dot(x, y)[source]

Works like tensor.dot() for both sparse and dense matrix products

theano.clone(output, replace=None, strict=True, share_inputs=True, copy_inputs=<object object>)[source]

Function that allows replacing subgraphs of a computational graph.

It returns a copy of the initial subgraph with the corresponding substitutions.

Parameters
  • output (Theano Variables (or Theano expressions)) – Theano expression that represents the computational graph.

  • replace (dict) – Dictionary describing which subgraphs should be replaced by what.

  • share_inputs (bool) – If True, use the same inputs (and shared variables) as the original graph. If False, clone them. Note that cloned shared variables still use the same underlying storage, so they will always have the same value.

  • copy_inputs – Deprecated, use share_inputs.

theano.sparse_grad(var)[source]

This function return a new variable whose gradient will be stored in a sparse format instead of dense.

Currently only variable created by AdvancedSubtensor1 is supported. i.e. a_tensor_var[an_int_vector].

New in version 0.6rc4.