Source code for e2cnn.diffops.r2


from e2cnn.diffops.steerable_basis import SteerableDiffopBasis
from e2cnn.diffops.irreps_basis import *
from e2cnn.diffops.basis import DiffopBasis, LaplaceProfile, TensorBasis

from e2cnn.group import *

from typing import List, Union

__all__ = [
    "diffops_SO2_act_R2",
    "diffops_O2_act_R2",
    "diffops_CN_act_R2",
    "diffops_DN_act_R2",
    "diffops_Flip_act_R2",
    "diffops_Trivial_act_R2",
]


[docs]def diffops_Flip_act_R2(in_repr: Representation, out_repr: Representation, max_power: int, axis: float = np.pi / 2, max_frequency: int = None, max_offset: int = None, discretization: DiscretizationArgs = DiscretizationArgs(), ) -> DiffopBasis: r""" Builds a basis for PDOs equivariant to reflections. ``in_repr`` and ``out_repr`` need to be :class:`~e2cnn.group.Representation` s of :class:`~e2cnn.group.CyclicGroup` with ``N=2``. Because the equivariance constraints allow any choice of radial profile, we use a :class:`~e2cnn.diffops.LaplaceProfile`, which is the most general choice. ``max_power`` specifies the maximum power of the Laplacian. The maximum order of differential operators in the basis will be two times ``max_power`` plus the maximum order of the angular basis. The parameter ``axis`` is the angle in radians (with respect to the horizontal axis, rotating counter-clockwise) which defines the reflection axis. The analytical angular solutions of PDO constraints belong to an infinite dimensional space and so can be expressed in terms of infinitely many basis elements. Only a finite subset can however be implemented. ``max_frequency`` and ``max_offset`` defines two ways to do so and therefore it is necessary to specify one of them. See :func:`~e2cnn.diffops.diffops_CN_act_R2` for more details. .. todo :: remove ``max_offset`` as it is equivalent to ``max_frequency`` here Args: in_repr (Representation): the representation specifying the transformation of the input feature field out_repr (Representation): the representation specifying the transformation of the output feature field max_power (int): the maximum power of Laplacians to use axis (float): angle defining the reflection axis max_frequency (int): maximum frequency of the basis max_offset (int): maximum offset in the frequencies of the basis discretization (DiscretizationArgs, optional): additional parameters specifying parameters for the discretization procedure. See :class:`~e2cnn.diffops.DiscretizationArgs`. """ assert in_repr.group == out_repr.group group = in_repr.group assert isinstance(group, CyclicGroup) and group.order() == 2 return TensorBasis(R2FlipsSolution, in_repr, out_repr, max_power, discretization, axis=axis, max_frequency=max_frequency, max_offset=max_offset)
[docs]def diffops_SO2_act_R2(in_repr: Representation, out_repr: Representation, max_power: int, discretization: DiscretizationArgs = DiscretizationArgs(), ) -> DiffopBasis: r""" Builds a basis for PDOs equivariant to continuous rotations, modeled by the group :math:`SO(2)`. ``in_repr`` and ``out_repr`` need to be :class:`~e2cnn.group.Representation` s of :class:`~e2cnn.group.SO2`. Because the equivariance constraints allow any choice of radial profile, we use a :class:`~e2cnn.diffops.LaplaceProfile`, which is the most general choice. ``max_power`` specifies the maximum power of the Laplacian. The maximum order of differential operators in the basis will be two times ``max_power`` plus the maximum order of the angular basis. Args: in_repr (Representation): the representation specifying the transformation of the input feature field out_repr (Representation): the representation specifying the transformation of the output feature field max_power (int): maximum power of the Laplacian for the radial profile discretization (DiscretizationArgs, optional): additional parameters specifying parameters for the discretization procedure. See :class:`~e2cnn.diffops.DiscretizationArgs`. """ assert in_repr.group == out_repr.group group = in_repr.group assert isinstance(group, SO2) return TensorBasis(R2ContinuousRotationsSolution, in_repr, out_repr, max_power, discretization)
[docs]def diffops_CN_act_R2(in_repr: Representation, out_repr: Representation, max_power: int, max_frequency: int = None, max_offset: int = None, discretization: DiscretizationArgs = DiscretizationArgs(), ) -> DiffopBasis: r""" Builds a basis for PDOs equivariant to :math:`N` discrete rotations, modeled by the group :math:`C_N`. ``in_repr`` and ``out_repr`` need to be :class:`~e2cnn.group.Representation` s of :class:`~e2cnn.group.CyclicGroup`. Because the equivariance constraints allow any choice of radial profile, we use a :class:`~e2cnn.diffops.LaplaceProfile`, which is the most general choice. ``max_power`` specifies the maximum power of the Laplacian. The maximum order of differential operators in the basis will be two times ``max_power`` plus the maximum order of the angular basis. The analytical angular solutions of PDO constraints belong to an infinite dimensional space and so can be expressed in terms of infinitely many basis elements, each associated with one unique order. Because the kernels are then discretized on a finite number of points (e.g. the cells of a grid), only low-order solutions needs to be considered. This enables us to build a finite dimensional basis containing only a finite subset of all analytical solutions. ``max_frequency`` is an integer controlling the highest angular order sampled in the basis (named this way because of the analogy to frequencies for kernels). The maximum order of the complete PDO will be ``max_frequency + 2 * max_power``. Orders/frequencies also appear in a basis with a period of :math:`N`, i.e. if the basis contains an element with frequency :math:`k`, then it also contains an element with order :math:`k + N`. In the analytical solutions shown in Table 11 `here <https://arxiv.org/abs/1911.08251>`_, each solution has a parameter :math:`t` or :math:`\hat{t}`. ``max_offset`` defines the maximum absolute value of these two numbers. Either ``max_frequency`` or ``max_offset`` must be specified. Args: in_repr (Representation): the representation specifying the transformation of the input feature field out_repr (Representation): the representation specifying the transformation of the output feature field max_power (int): maximum power of the Laplacian for the radial profile max_frequency (int): maximum frequency of the basis max_offset (int): maximum offset in the frequencies of the basis discretization (DiscretizationArgs, optional): additional parameters specifying parameters for the discretization procedure. See :class:`~e2cnn.diffops.DiscretizationArgs`. """ assert in_repr.group == out_repr.group group = in_repr.group assert isinstance(group, CyclicGroup) return TensorBasis(R2DiscreteRotationsSolution, in_repr, out_repr, max_power, discretization, max_frequency=max_frequency, max_offset=max_offset)
[docs]def diffops_DN_act_R2(in_repr: Representation, out_repr: Representation, max_power: int, axis: float = np.pi/2, max_frequency: int = None, max_offset: int = None, discretization: DiscretizationArgs = DiscretizationArgs(), ) -> DiffopBasis: r""" Builds a basis for PDOs equivariant to reflections and :math:`N` discrete rotations, modeled by the group :math:`D_N`. ``in_repr`` and ``out_repr`` need to be :class:`~e2cnn.group.Representation` s of :class:`~e2cnn.group.DihedralGroup`. Because the equivariance constraints allow any choice of radial profile, we use a :class:`~e2cnn.diffops.LaplaceProfile`, which is the most general choice. ``max_power`` specifies the maximum power of the Laplacian. The maximum order of differential operators in the basis will be two times ``max_power`` plus the maximum order of the angular basis. The parameter ``axis`` is the angle in radians (with respect to the horizontal axis, rotating counter-clockwise) which defines the reflection axis for the reflection element of the group. The analytical angular solutions of PDO constraints belong to an infinite dimensional space and so can be expressed in terms of infinitely many basis elements. Only a finite subset can however be implemented. ``max_frequency`` and ``max_offset`` defines two ways to do so and therefore it is necessary to specify one of them. See :func:`~e2cnn.diffops.diffops_CN_act_R2` for more details. Either ``max_frequency`` or ``max_offset`` must be specified. Args: in_repr (Representation): the representation specifying the transformation of the input feature field out_repr (Representation): the representation specifying the transformation of the output feature field max_power (int): maximum power of the Laplacian for the radial profile max_frequency (int): maximum frequency of the basis max_offset (int): maximum offset in the frequencies of the basis axis (float): angle defining the reflection axis discretization (DiscretizationArgs, optional): additional parameters specifying parameters for the discretization procedure. See :class:`~e2cnn.diffops.DiscretizationArgs`. """ assert in_repr.group == out_repr.group group = in_repr.group assert isinstance(group, DihedralGroup) return TensorBasis(R2FlipsDiscreteRotationsSolution, in_repr, out_repr, max_power, discretization, axis=axis, max_frequency=max_frequency, max_offset=max_offset)
[docs]def diffops_O2_act_R2(in_repr: Representation, out_repr: Representation, max_power: int, axis: float = np.pi / 2, discretization: DiscretizationArgs = DiscretizationArgs(), ) -> DiffopBasis: r""" Builds a basis for PDOs equivariant to reflections and continuous rotations, modeled by the group :math:`O(2)`. ``in_repr`` and ``out_repr`` need to be :class:`~e2cnn.group.Representation` s of :class:`~e2cnn.group.O2`. Because the equivariance constraints allow any choice of radial profile, we use a :class:`~e2cnn.diffops.LaplaceProfile`, which is the most general choice. ``max_power`` specifies the maximum power of the Laplacian. The maximum order of differential operators in the basis will be two times ``max_power`` plus the maximum order of the angular basis. Because :math:`O(2)` contains all rotations, the reflection element of the group can be associated to any reflection axis. Reflections along other axes can be obtained by composition with rotations. However, a choice of this axis is required to align the basis with respect to the action of the group. Args: in_repr (Representation): the representation specifying the transformation of the input feature field out_repr (Representation): the representation specifying the transformation of the output feature field max_power (int): maximum power of the Laplacian for the radial profile axis (float, optional): angle of the axis of the reflection element discretization (DiscretizationArgs, optional): additional parameters specifying parameters for the discretization procedure. See :class:`~e2cnn.diffops.DiscretizationArgs`. """ assert in_repr.group == out_repr.group group = in_repr.group assert isinstance(group, O2) return TensorBasis(R2FlipsContinuousRotationsSolution, in_repr, out_repr, max_power, discretization, axis=axis)
[docs]def diffops_Trivial_act_R2(in_repr: Representation, out_repr: Representation, max_power: int, max_frequency: int = None, max_offset: int = None, discretization: DiscretizationArgs = DiscretizationArgs(), ) -> DiffopBasis: r""" Builds a basis for unconstrained PDOs. This is equivalent to use :func:`~e2cnn.diffops.diffops_CN_act_R2` with an instance of :class:`~e2cnn.group.CyclicGroup` with ``N=1`` (the trivial group :math:`C_1`). ``in_repr`` and ``out_repr`` need to be associated with an instance of :class:`~e2cnn.group.CyclicGroup` with ``N=1``. Because the equivariance constraints allow any choice of radial profile, we use a :class:`~e2cnn.diffops.LaplaceProfile`, which is the most general choice. ``max_power`` specifies the maximum power of the Laplacian. The maximum order of differential operators in the basis will be two times ``max_power`` plus the maximum order of the angular basis. The analytical angular solutions of PDO constraints belong to an infinite dimensional space and so can be expressed in terms of infinitely many basis elements. Only a finite subset can however be implemented. ``max_frequency`` and ``max_offset`` defines two ways to do so and therefore it is necessary to specify one of them. See :func:`~e2cnn.diffops.diffops_CN_act_R2` for more details. .. todo :: remove ``max_offset`` as it is equivalent to ``max_frequency`` here Args: in_repr (Representation): the representation specifying the transformation of the input feature field out_repr (Representation): the representation specifying the transformation of the output feature field max_power (int): maximum power of the Laplacian for the radial profile axis (float): angle defining the reflection axis max_frequency (int): maximum frequency of the basis max_offset (int): maximum offset in the frequencies of the basis discretization (DiscretizationArgs, optional): additional parameters specifying parameters for the discretization procedure. See :class:`~e2cnn.diffops.DiscretizationArgs`. """ assert in_repr.group == out_repr.group group = in_repr.group assert isinstance(group, CyclicGroup) and group.order() == 1 return TensorBasis(R2DiscreteRotationsSolution, in_repr, out_repr, max_power, discretization, max_frequency=max_frequency, max_offset=max_offset)