Previous topic

tensor.utils – Tensor Utils

Next topic

tensor.io – Tensor IO Ops

This Page

tensor.extra_ops – Tensor Extra Ops

theano.tensor.extra_ops.bartlett(M)

An instance of this class returns the Bartlett spectral window in the time-domain. The Bartlett window is very similar to a triangular window, except that the end points are at zero. It is often used in signal processing for tapering a signal, without generating too much ripple in the frequency domain.

Parameters:M – (integer scalar) Number of points in the output window. If zero or less, an empty vector is returned.
Returns:(vector of doubles) The triangular window, with the maximum value normalized to one (the value one appears only if the number of samples is odd), with the first and last samples equal to zero.

New in version 0.6.

theano.tensor.extra_ops.bincount(x, weights=None, minlength=None)

Count number of occurrences of each value in array of non-negative ints.

The number of bins (of size 1) is one larger than the largest value in x. If minlength is specified, there will be at least this number of bins in the output array (though it will be longer if necessary, depending on the contents of x). Each bin gives the number of occurrences of its index value in x. If weights is specified the input array is weighted by it, i.e. if a value n is found at position i, out[n] += weight[i] instead of out[n] += 1. Wraping of numpy.bincount

Parameters:
  • x – 1 dimension, nonnegative ints
  • weights – array of the same shape as x with corresponding weights. Optional.
  • minlength – A minimum number of bins for the output array. Optional.

New in version 0.6.

theano.tensor.extra_ops.cumprod(x, axis=None)

Return the cumulative product of the elements along a given axis.

Wraping of numpy.cumprod.

Parameters:
  • x – Input tensor variable.
  • axis – The axis along which the cumulative product is computed. The default (None) is to compute the cumprod over the flattened array.

New in version 0.7.

theano.tensor.extra_ops.cumsum(x, axis=None)

Return the cumulative sum of the elements along a given axis.

Wraping of numpy.cumsum.

Parameters:
  • x – Input tensor variable.
  • axis – The axis along which the cumulative sum is computed. The default (None) is to compute the cumsum over the flattened array.

New in version 0.7.

theano.tensor.extra_ops.diff(x, n=1, axis=-1)

Calculate the n-th order discrete difference along given axis.

The first order difference is given by out[i] = a[i + 1] - a[i] along the given axis, higher order differences are calculated by using diff recursively. Wraping of numpy.diff.

Parameters:
  • x – Input tensor variable.
  • n – The number of times values are differenced, default is 1.
  • axis – The axis along which the difference is taken, default is the last axis.

New in version 0.6.

theano.tensor.extra_ops.fill_diagonal(a, val)

Returns a copy of an array with all elements of the main diagonal set to a specified scalar value.

Parameters:
  • a – Rectangular array of at least two dimensions.
  • val – Scalar value to fill the diagonal whose type must be compatible with that of array ‘a’ (i.e. ‘val’ cannot be viewed as an upcast of ‘a’).
Returns:

An array identical to ‘a’ except that its main diagonal is filled with scalar ‘val’. (For an array ‘a’ with a.ndim >= 2, the main diagonal is the list of locations a[i, i, ..., i] (i.e. with indices all identical).)

Support rectangular matrix and tensor with more than 2 dimensions if the later have all dimensions are equals.

New in version 0.6.

theano.tensor.extra_ops.fill_diagonal_offset(a, val, offset)

Returns a copy of an array with all elements of the main diagonal set to a specified scalar value.

param a:Rectangular array of two dimensions.
param val:Scalar value to fill the diagonal whose type must be compatible with that of array ‘a’ (i.e. ‘val’ cannot be viewed as an upcast of ‘a’).
param offset:Scalar value Offset of the diagonal from the main diagonal. Can be positive or negative integer.
return:An array identical to ‘a’ except that its offset diagonal is filled with scalar ‘val’. The output is unwrapped.
theano.tensor.extra_ops.repeat(x, repeats, axis=None)

Repeat elements of an array.

It returns an array which has the same shape as x, except along the given axis. The axis is used to speficy along which axis to repeat values. By default, use the flattened input array, and return a flat output array.

The number of repetitions for each element is repeat. repeats is broadcasted to fit the length of the given axis.

Parameters:
  • x – Input data, tensor variable.
  • repeats – int, scalar or tensor variable.
  • axis – int, optional.
See:

tensor.tile

New in version 0.6.

theano.tensor.extra_ops.squeeze(x)

Remove broadcastable dimensions from the shape of an array.

It returns the input array, but with the broadcastable dimensions removed. This is always x itself or a view into x.

Parameters:x – Input data, tensor variable.
Returns:x without its broadcastable dimensions.

New in version 0.6.

theano.tensor.extra_ops.to_one_hot(y, nb_class, dtype=None)

Return a matrix where each row correspond to the one hot encoding of each element in y.

param y:A vector of integer value between 0 and nb_class - 1.
param nb_class:The number of class in y.
param dtype:The dtype of the returned matrix. Default floatX.
return:A matrix of shape (y.shape[0], nb_class), where each row i is the one hot encoding of the corresponding y[i] value.