필터 지우기
필터 지우기

What is the default supervised learning algorithm in matlab

조회 수: 1 (최근 30일)
Omotayo Asiru
Omotayo Asiru 2016년 8월 20일
답변: Greg Heath 2016년 8월 20일
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?

채택된 답변

Greg Heath
Greg Heath 2016년 8월 20일
All of the net properties can be deduced via
net = net % No semicolon
Hope this helps.
Greg

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by