Artificial Neural Network code for this dataset?

1 vue (au cours des 30 derniers jours)
Debalina Pal
Debalina Pal le 31 Mai 2018
Commenté : Debalina Pal le 1 Juin 2018
can anyone send me the code for ANN which is applicable in this dataset?

Réponse acceptée

Majid Farzaneh
Majid Farzaneh le 31 Mai 2018
Hi, you can use something like this:
I=xlsread('forneuralnetworkdataset.xls');
inputs=I(:,1:3)';
targets=I(:,4)';
net=feedforwardnet(10);
net=train(net,inputs,targets);
  3 commentaires
Majid Farzaneh
Majid Farzaneh le 1 Juin 2018
You're welcome. You have the trained net. Simply use the net as a function:
out=net([28;89;993])
or
test_data=I(1:10,1:3)';
outs=net(test_data);
Note that the output of a default feed-forward network is not integer. You can use round, ceil, floor or fix function to round the output.
out=round(net([28;89;993]))
Debalina Pal
Debalina Pal le 1 Juin 2018
another question is that: I=xlsread('forneuralnetworkdataset.xlsx'); inputs=I(:,1:3)'; targets=I(:,4)'; net=feedforwardnet(10); net=train(net,inputs,targets); display(net); out=round(net([28;89;993])); display(out); In this above code I want to define a function and I want to pass this inputs as input arguments through this function.

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by