I would like to know how to change the type of radial basis function in newrbe and the number of hidden layer neurons
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi, the interpretation of newrbe as follow figure, but i can't understand how to change the type of radial basis function in newrbe and the number of hidden layer neurons. if you have answer, please tell me, thank you very much, have a nice day!
0 Kommentare
Antworten (1)
Jaimin
am 24 Sep. 2024
Hello @Yi Ma
You can use the “newrb” function instead of the “newrbe” function to modify the radial basis function and adjust the number of neurons in the hidden layer.
I have attached a code snippet to help you understand the “newrb” function better.
% Example data
P = [0 1 2 3 4 5]; % Input data
T = [0.5 1.0 1.5 2.0 2.5 3.0]; % Target data
% Parameters for newrb
goal = 0.0; % Mean squared error goal
spread = 1.0; % Spread of the radial basis functions
max_neurons = 10; % Maximum number of neurons
display_freq = 1; % Display frequency (set to 0 to turn off)
% Create the RBF network
net = newrb(P, T, goal, spread, max_neurons, display_freq);
% View the network
view(net);
You can refer to the following MathWorks documentation to learn more about the “newrb” function.
I hope this will be helpful.
2 Kommentare
Sam Chak
am 24 Sep. 2024
I believe that @Yi Ma wants to use a custom radial basis function (RBF). The Deep Learning Toolbox uses the default Gaussian RBF. In addition to the widely used Gaussian RBF, the inverse quadratic and inverse multiquadric functions are also known to produce good results. @Yi Ma may want to test a novel RBF. Could you advise on how to achieve that?
Siehe auch
Kategorien
Mehr zu Define Shallow Neural Network Architectures finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!