Hyperparameter optimization fitrnet not working
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I'm trying to optimize the hyperparameters of a NN regression but I get an error regarding the inputs i give to the function fitrnet. I can't understand why since if I don't use ''OptimizeHyperparameters" but I specify the parameters my self the code works just fine.
%% training Neural Network regression
clear
clc
close all
load trainingSetReduced.mat
test = struct2table(test);
predictorNames = {'v_i', 'E_tip', 'rho_tip', 'v_tip', 'Y_tip', 'Radius', 'E_plate', 'rho_plate', 'v_plate', 'Y_plate', 'Insulator','BC','anvil'};
predictors = test(:, predictorNames);
responseNames = {'F1','F2','F3','F4','F5','F6','F7','F8','F9','F10','F11','F12','F13','F14','F15','F16','F17','F18','F19','F20'};
response = test(:,responseNames);
X = table2array(predictors);
Y = table2array(response);
% Train the neural network
regressionNeuralNetwork = fitrnet(...
X, ...
Y, ...
'OptimizeHyperparameters', 'all', ...
'HyperparameterOptimizationOptions', struct( ...
'Optimizer', 'bayesopt', ...
'AcquisitionFunctionName','expected-improvement-plus', ...
'UseParallel', true, ...
'ShowPlots', true, ...
'Verbose', 1, ...
'MaxObjectiveEvaluations', 30));
Does anybofy have some suggestions on how to solve the problem?
Thank you in advance
0 commentaires
Réponse acceptée
the cyclist
le 13 Avr 2025
"You can use an array ResponseVarName to specify multiple response variables. (since R2024b)"
but also
"Hyperparameter optimization options are not supported for multiresponse regression."
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Function Approximation and Clustering dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!