Skip to content

trigonometric_expansion

Bases: transformation

The trigonometric data expansion function.

It performs the trigonometric expansion of the input vector, and returns the expansion result. The class inherits from the base expansion class (i.e., the transformation class in the module directory).

...

Notes

For input vector \(\mathbf{x} \in R^m\), its trigonometric expansion can be represented as follows: $$ \begin{equation} \kappa (\mathbf{x}) = \left[ \cos(\mathbf{x}), \sin(\mathbf{x}), \tan(\mathbf{x}) \right] \in {R}^D, \end{equation} $$ where the output dimensions will be \(D = 3 m\).

By default, the input and output can also be processed with the optional pre- or post-processing functions in the trigonometric expansion function.

Attributes:

Name Type Description
name str, default = 'trigonometric_expansion'

Name of the expansion function.

Methods:

Name Description
__init__

It performs the initialization of the expansion function.

calculate_D

It calculates the expansion space dimension D based on the input dimension parameter m.

forward

It implements the abstract forward method declared in the base expansion class.

Source code in tinybig/expansion/trigonometric_expansion.py
class trigonometric_expansion(transformation):
    r"""
    The trigonometric data expansion function.

    It performs the trigonometric expansion of the input vector, and returns the expansion result.
    The class inherits from the base expansion class (i.e., the transformation class in the module directory).

    ...

    Notes
    ----------
    For input vector $\mathbf{x} \in R^m$, its trigonometric expansion can be represented as follows:
    $$
    \begin{equation}
        \kappa (\mathbf{x}) = \left[ \cos(\mathbf{x}), \sin(\mathbf{x}), \tan(\mathbf{x}) \right] \in {R}^D,
    \end{equation}
    $$
    where the output dimensions will be $D = 3 m$.

    By default, the input and output can also be processed with the optional pre- or post-processing functions
    in the trigonometric expansion function.

    Attributes
    ----------
    name: str, default = 'trigonometric_expansion'
        Name of the expansion function.

    Methods
    ----------
    __init__
        It performs the initialization of the expansion function.

    calculate_D
        It calculates the expansion space dimension D based on the input dimension parameter m.

    forward
        It implements the abstract forward method declared in the base expansion class.

    """

    def __init__(self, name='trigonometric_expansion', *args, **kwargs):
        r"""
        The initialization method of the trigonometric expansion function.

        It initializes a trigonometric expansion object based on the input function name.
        This method will also call the initialization method of the base class as well.

        Parameters
        ----------
        name: str, default = 'trigonometric_expansion'
            The name of the trigonometric expansion function.

        Returns
        ----------
        transformation
            The trigonometric expansion function.
        """
        super().__init__(name=name, *args, **kwargs)

    def calculate_D(self, m: int):
        r"""
        The expansion dimension calculation method.

        It calculates the intermediate expansion space dimension based on the input dimension parameter m.
        For the trigonometric expansion function, the expansion space dimension will be
        $$ D = 3m. $$

        Parameters
        ----------
        m: int
            The dimension of the input space.

        Returns
        -------
        int
            The dimension of the expansion space.
        """
        return m * 3

    def forward(self, x: torch.Tensor, device='cpu', *args, **kwargs):
        r"""
        The forward method of the data expansion function.

        It performs the trigonometric data expansion of the input data and returns the expansion result as
        $$
            \begin{equation}
                \kappa (\mathbf{x}) = \left[ \cos(\mathbf{x}), \sin(\mathbf{x}), \tan(\mathbf{x}) \right] \in {R}^D.
            \end{equation}
        $$


        Parameters
        ----------
        x: torch.Tensor
            The input data vector.
        device: str, default = 'cpu'
            The device to perform the data expansion.

        Returns
        ----------
        torch.Tensor
            The expanded data vector of the input.
        """
        b, m = x.shape
        x = self.pre_process(x=x, device=device)
        sin = torch.sin(x)
        cos = torch.cos(x)
        tan = torch.tan(x)
        expansion = torch.cat((sin, cos, tan), dim=1)

        assert expansion.shape == (b, self.calculate_D(m=m))
        return self.post_process(x=expansion, device=device)

__init__(name='trigonometric_expansion', *args, **kwargs)

The initialization method of the trigonometric expansion function.

It initializes a trigonometric expansion object based on the input function name. This method will also call the initialization method of the base class as well.

Parameters:

Name Type Description Default
name

The name of the trigonometric expansion function.

'trigonometric_expansion'

Returns:

Type Description
transformation

The trigonometric expansion function.

Source code in tinybig/expansion/trigonometric_expansion.py
def __init__(self, name='trigonometric_expansion', *args, **kwargs):
    r"""
    The initialization method of the trigonometric expansion function.

    It initializes a trigonometric expansion object based on the input function name.
    This method will also call the initialization method of the base class as well.

    Parameters
    ----------
    name: str, default = 'trigonometric_expansion'
        The name of the trigonometric expansion function.

    Returns
    ----------
    transformation
        The trigonometric expansion function.
    """
    super().__init__(name=name, *args, **kwargs)

calculate_D(m)

The expansion dimension calculation method.

It calculates the intermediate expansion space dimension based on the input dimension parameter m. For the trigonometric expansion function, the expansion space dimension will be $$ D = 3m. $$

Parameters:

Name Type Description Default
m int

The dimension of the input space.

required

Returns:

Type Description
int

The dimension of the expansion space.

Source code in tinybig/expansion/trigonometric_expansion.py
def calculate_D(self, m: int):
    r"""
    The expansion dimension calculation method.

    It calculates the intermediate expansion space dimension based on the input dimension parameter m.
    For the trigonometric expansion function, the expansion space dimension will be
    $$ D = 3m. $$

    Parameters
    ----------
    m: int
        The dimension of the input space.

    Returns
    -------
    int
        The dimension of the expansion space.
    """
    return m * 3

forward(x, device='cpu', *args, **kwargs)

The forward method of the data expansion function.

It performs the trigonometric data expansion of the input data and returns the expansion result as $$ \begin{equation} \kappa (\mathbf{x}) = \left[ \cos(\mathbf{x}), \sin(\mathbf{x}), \tan(\mathbf{x}) \right] \in {R}^D. \end{equation} $$

Parameters:

Name Type Description Default
x Tensor

The input data vector.

required
device

The device to perform the data expansion.

'cpu'

Returns:

Type Description
Tensor

The expanded data vector of the input.

Source code in tinybig/expansion/trigonometric_expansion.py
def forward(self, x: torch.Tensor, device='cpu', *args, **kwargs):
    r"""
    The forward method of the data expansion function.

    It performs the trigonometric data expansion of the input data and returns the expansion result as
    $$
        \begin{equation}
            \kappa (\mathbf{x}) = \left[ \cos(\mathbf{x}), \sin(\mathbf{x}), \tan(\mathbf{x}) \right] \in {R}^D.
        \end{equation}
    $$


    Parameters
    ----------
    x: torch.Tensor
        The input data vector.
    device: str, default = 'cpu'
        The device to perform the data expansion.

    Returns
    ----------
    torch.Tensor
        The expanded data vector of the input.
    """
    b, m = x.shape
    x = self.pre_process(x=x, device=device)
    sin = torch.sin(x)
    cos = torch.cos(x)
    tan = torch.tan(x)
    expansion = torch.cat((sin, cos, tan), dim=1)

    assert expansion.shape == (b, self.calculate_D(m=m))
    return self.post_process(x=expansion, device=device)