You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Param for the ElasticNet mixing parameter, in range [0, 1]. For alpha = 0, the penalty is an L2 penalty. For alpha = 1, it is an L1 penalty..
261
259
* @group param
262
260
*/
263
-
finalvalelasticNetParam:DoubleParam=newDoubleParam(this, "elasticNetParam", "the ElasticNet mixing parameter")
261
+
finalvalelasticNetParam:DoubleParam=newDoubleParam(this, "elasticNetParam", "the ElasticNet mixing parameter, in range [0, 1]. For alpha = 0, the penalty is an L2 penalty. For alpha = 1, it is an L1 penalty.", ParamValidate.inRange[Double](0, 1))
0 commit comments