What is the default supervised learning algorithm in matlab
Show older comments
With this code below
[x,t] = iris_dataset; net = patternnet; net = configure(net,x,t);
net = train(net,x,t); save('C:\Temp\trained_net.mat','net');
y = net(x);
perf = perform(net,t,y); display(['performance: ', num2str(perf)]);
I will assume matlab uses its default learning algorithm since i did not specify any. What is the default supervised learning algorithm in matlab?
Accepted Answer
More Answers (0)
Categories
Find more on Pattern Recognition in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!