How to predict housing price using Neural Network Toolbox?

I would like to predict housing prices using inputs such as distance away from subway, numbers of rooms etc.. which of the 4 wizards ( fitting tool, pattern recognition tool, clustering tool, time series tool) should i use?
Thank You WT Lim

 採用された回答

Greg Heath
Greg Heath 2014 年 10 月 10 日

1 投票

Use the fitting tool with fitnet
Also, see
help house_dataset
doc house_dataset
help fitnet
doc fitnet
[ x,t ] = house_dataset;
[ I N ] = size(x) % [ 13 506 ]
[ O N ] = size(t) % [ 1 506 ]
MSE00 = mean(var(t',1)) % 84.42
net = fitnet;
rng('default')
[net tr y e ] = train(net,x,t); % e=t-y
NMSE = mse(e)/MSE00 % normalized MSE = 0.071101
R2 = 1-NMSE % Rsquare (See Wikipedia) = 0.9289
% ~ 93% of the target variance is modeled by the net. % Obtain details from the training record
tr = tr
Hope this helps
Thank you for formally accepting my answer
Greg

2 件のコメント

Greg Heath
Greg Heath 2014 年 10 月 10 日
Better solutions probably can be obtained by using
1. A different number of hidden nodes
2. A different set of random initial weigts
WT
WT 2014 年 10 月 10 日
編集済み: WT 2014 年 10 月 10 日
Thank you for replying. Can i still use fitting tool with fitnet when the inputs are dependent on time?

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeDeep Learning Toolbox についてさらに検索

質問済み:

WT
2014 年 10 月 10 日

編集済み:

WT
2014 年 10 月 10 日

Community Treasure Hunt

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

Start Hunting!

Translated by