tfmri.convex.ConvexFunctionL2Norm

class ConvexFunctionL2Norm(domain_dimension, scale=None, dtype=None, name=None)[source]

Bases: tensorflow_mri.python.ops.convex_ops.ConvexFunctionNorm

A ConvexFunction computing the [scaled] L2-norm of a [batch of] inputs.

Parameters
  • domain_dimension – A scalar integer tf.Tensor. The dimension of the domain.

  • scale – A float. A scaling factor. Defaults to 1.0.

  • dtype – A string or DType. The type of this ConvexFunction. Defaults to tf.dtypes.float32.

  • name – A name for this ConvexFunction.

References

1

Parikh, N., & Boyd, S. (2014). Proximal algorithms. Foundations and Trends in optimization, 1(3), 127-239.

Initialize this ConvexFunction.