Navigation
API > API/Plugins > API/Plugins/NeuralMorphModel > API/Plugins/NeuralMorphModel/UNeuralMorphModel
Syntax
UPROPERTY (EditAnywhere, BlueprintReadWrite, AdvancedDisplay, Category="Training Settings",
Meta=(ClampMin="0.0", ClampMax="10.0"))
float SmoothLossBeta
Remarks
The beta parameter in the smooth L1 loss function, which describes below which absolute error to use a squared term. If the error is above or equal to this beta value, it will use the L1 loss. This is a non-negative value, where 0 makes it behave exactly the same as an L1 loss. The value entered represents how many cm of error to allow before an L1 loss is used. Typically higher values give smoother results. If you see some noise in the trained results, even with large amount of samples and iterations, try increasing this value.