Uses of Class
com.yahoo.tensor.functions.CompositeTensorFunction

Packages that use CompositeTensorFunction
Package
Description
Tensor function evaluation
  • Uses of CompositeTensorFunction in com.yahoo.tensor.functions

    Modifier and Type
    Class
    Description
    class 
    Argmax<NAMETYPE extends Name>
     
    class 
    Argmin<NAMETYPE extends Name>
     
    class 
    Diag<NAMETYPE extends Name>
    A tensor generator which returns a tensor of any dimension filled with 1 in the diagonal and 0 elsewhere.
    class 
    Expand<NAMETYPE extends Name>
    The expand tensor function returns a tensor with a new dimension of size 1 is added, equivalent to "tensor * tensor(dim_name[1])(1)".
    class 
    L1Normalize<NAMETYPE extends Name>
     
    class 
    L2Normalize<NAMETYPE extends Name>
     
    class 
    Matmul<NAMETYPE extends Name>
     
    class 
    Random<NAMETYPE extends Name>
    A tensor generator which returns a tensor of any dimension filled with random numbers between 0 and 1.
    class 
    Range<NAMETYPE extends Name>
    A tensor generator which returns a tensor of any dimension filled with the sum of the tensor indexes of each position.
    class 
    ReduceJoin<NAMETYPE extends Name>
    An optimization for tensor expressions where a join immediately follows a reduce.
    class 
    Softmax<NAMETYPE extends Name>
     
    class 
    XwPlusB<NAMETYPE extends Name>