tensorly.tucker_tensor.tucker_to_tensor

tucker_to_tensor(tucker_tensor, skip_factor=None, transpose_factors=False)[source]

Converts the Tucker tensor into a full tensor

Parameters:
tucker_tensortl.TuckerTensor or (core, factors)

core tensor and list of factor matrices

skip_factorNone or int, optional, default is None

if not None, index of a matrix to skip Note that in any case, modes, if provided, should have a lengh of tensor.ndim

transpose_factorsbool, optional, default is False

if True, the matrices or vectors in in the list are transposed

Returns:
2D-array

full tensor of shape (factors[0].shape[0], ..., factors[-1].shape[0])