Borrar filtros
Borrar filtros

How to use Grid search to find the optimal hyperparameters ?

38 visualizaciones (últimos 30 días)
Yooya yooya
Yooya yooya el 6 de Dic. de 2020
Editada: Mohith Kulkarni el 11 de Dic. de 2020
% Train the classifier
knn = ClassificationKNN.fit(Xtrain,Ytrain,'Distance','seuclidean');

Respuestas (1)

Mohith Kulkarni
Mohith Kulkarni el 9 de Dic. de 2020
Editada: Mohith Kulkarni el 11 de Dic. de 2020
Use the 'OptimizeHyperparameters' Name-Value pair argument to specify the Parameters to optimize when creating the 'ClassificationKNN' model using 'fitcknn'. Use the 'HyperparameterOptimizationOptions' to specify the Optimizer for the model. Refer the code below.
Mdl = fitcknn(X,Y,'OptimizeHyperparameters','auto',...
'HyperparameterOptimizationOptions',...
struct('Optimizer','gridsearch'))
You can use this model for fitting the data with the specified optimization options.
Refer the documention of fitcknn and ClassificationKNN for more information on the Name-Value pair arguments.

Categorías

Más información sobre Problem-Based Optimization Setup en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by