Description Usage Arguments Author(s) Examples
Given an arbitrary loss function, compose it with elastic net regularization
1 | compose_regularization(loss, elastic_net_parameter, lambda)
|
loss |
the loss function to be built on |
elastic_net_parameter |
the weighting of L1 regularization in the elastic net. L2 will be weighted as 1 - elastic_net_parameter |
lambda |
parameter controlling how much regularization contributes to the overall loss |
kholub
1 2 | lasso_ls <- compose_regularization(LS_LOSS, 1, 1e-5)
ridge_ls <- compose_regularization(LS_LOSS, 0, 1e-5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.