Regularisation Constraints
PortfolioOptimisers.AbstractRegularisationEstimator Type
julia
abstract type AbstractRegularisationEstimator <: AbstractEstimatorAbstract supertype for all portfolio weight regularisation estimators.
Related
sourcePortfolioOptimisers.LpRegularisation Type
julia
struct LpRegularisation{__T_p, __T_val} <: AbstractRegularisationEstimatorLp-norm regularisation term added to the optimisation objective:
Penalises concentrated portfolios by encouraging weight smoothness for
Fields
p::Number: Lp norm exponent. Must satisfyp > 1and be finite.val::Number: Penalty coefficient. Must be positive and finite.
Constructors
julia
LpRegularisation(; p::Number = 3, val::Number = 1e-3) -> LpRegularisationRelated
source