フィルターのクリア

How can I use Grid search on these parameters?

22 ビュー (過去 30 日間)
Yooya yooya
Yooya yooya 2020 年 12 月 11 日
回答済み: Puru Kathuria 2020 年 12 月 22 日
How can I use Grid search on following parameters?
-MaxNumSplits
-MinLeafSize
-SplitCriterion
-NumVariablesTosample
% decision tree model
t = ClassificationTree.fit(Xtrain,Ytrain,'CategoricalPredictors',catPred);

回答 (1 件)

Puru Kathuria
Puru Kathuria 2020 年 12 月 22 日
The following post explains how to do a grid search for SVM. You can do the same for decision tree by just changing the parameters.
Also, this link contains a function that does grid search on a neural network, you can also take inspiration from this function to perform the same on your decision tree.
The main idea is to use ndgrid and pass the parameters you want to optimize to ndgrid and form pairs to perform the exhaustive search using ndgrid.

カテゴリ

Help Center および File ExchangeClassification についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by