Reputation: 602
I wish to design a multi-layer feed-forward neural network classifier on fisheriris dataset in MATLAB.
How to go about it ?
Upvotes: 1
Views: 2122
Reputation: 83437
The two most commonly used toolboxes for the neural networks in MATLAB are:
Here is a demo from Neural Network Toolbox's documentation that illustrates using a neural network as a classifier to identify the sex of crabs from physical dimensions of the crab, from which you can take inspiration for the iris data set: http://www.mathworks.com/products/neural-network/demos.html?file=/products/demos/shipping/nnet/classify_crab_demo.html
Upvotes: 5