how can I automaticlly optimize hyperparameter for lasso regression. I could not set the function input as variable.

1 回表示 (過去 30 日間)
for i = 0:0.1:1
[B,FitInfo] = lasso(XTrain,yTrain,"Alpha",i);%alpha could not be variable like i. it's ok to use constant like 0.75.
error = sum(abs(yTest-yhat));
end

採用された回答

Alan Weiss
Alan Weiss 2022 年 5 月 23 日
As stated in the documentation, you cannot set Alpha = 0. The Alpha parameter must be strictly positive (and no more than 1).
Alan Weiss
MATLAB mathematical toolbox documentation

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSupport Vector Machine Regression についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by