I want to implement Multilayer perceptron for software effort estimation. Which function should I use feedforwardnet, fitnet or something else.

3 ビュー (過去 30 日間)
My input may be continuous or categorial. but target is always a continuous no.

採用された回答

Maria Duarte Rosa
Maria Duarte Rosa 2019 年 8 月 9 日
For continuous outputs both fitnet and feedforwardnet are equivalent and the natural choice.
Perhaps an easier way to get strated is using the app:
If further customization is needed then 'network' allows one to build more flexible networks:
Note: for deep learning networks a good way to get sarted is by using the Deep Network Designer app:
I hope this helps.
  3 件のコメント
Maria Duarte Rosa
Maria Duarte Rosa 2019 年 8 月 12 日
Hi Sushma,
The targets for feedforwardnet are continuous. Please see here:
[x,t] = simplefit_dataset;
net = feedforwardnet(10);
net = train(net,x,t);
t are continuous.
Petternnet is for categorical targets, see here:
[x,t] = iris_dataset;
net = patternnet(10);
net = train(net,x,t);
t in this case is the 1/0 form.
sushma khatri
sushma khatri 2019 年 8 月 12 日
Thank u so much.
what is the basic difference between feedforwardnet and fitnet.
Actually I want to predict software effort based on some features.
effort is always numeric but input may be continuous or categorial.
So I m confuse which tool should I use nftool , nprtool or ntstool

サインインしてコメントする。

その他の回答 (1 件)

sushma khatri
sushma khatri 2019 年 8 月 12 日
Thank u so much.
what is the basic difference between feedforwardnet and fitnet.
Actually I want to predict software effort based on some features.
effort is always numeric but input may be continuous or categorial.
So I m confuse which tool should I use nftool , nprtool or ntstool
  2 件のコメント
Maria Duarte Rosa
Maria Duarte Rosa 2019 年 8 月 12 日
fitnet and feedforwardnet are equivalent. You can use one or the other. If 'effort' is always continuous then fitnet or feedforwardnet seems to me to be the most natural choice for your task.
nftool is the most appropriate UI for modelling continous outputs.
nprtool is for patternnet where the output is categorical.
ntstool is for modelling time-series, using narxnet and other similar networks.
sushma khatri
sushma khatri 2019 年 8 月 12 日
Awesome it worked
thank u so much

サインインしてコメントする。

製品


リリース

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by