matlab train set UCI - matlab

I'm being required to train a perceptron in Matlab to learn a classification data set (any, really). The only restriction is that the data set must come from the UCI Machine Learning Repository. The problem is that I have really no idea where to begin as my teacher is extremely bad at what he does and never explained it well. I've tried asking other class-mates for help but none of them seem to have the answers. I hope I can get help from this community as it's my last chance. Thank you guys.

Well, we're really not your last chance. There are plenty of tutorials, examples, and resources findable easily from Google that would help (for example, search on "MATLAB perceptron iris" - the iris dataset is a famous example dataset, included in the UCI repository).
But here's a start. I'm assuming that if you've been set the task of training a perceptron in MATLAB, then you have access to Neural Network Toolbox (if you're asking how to implement a perceptron algorithm from scratch in MATLAB, look in a textbook).
Type doc nnet. That will bring up the documentation for Neural Network Toolbox. Then click through to the section labelled "Examples". Scrolling down to the bottom, there are several demos in a section called "Perceptrons". Try looking at the demos "Classification with a 2-Input Perceptron" or "Linearly Non-separable Vectors". Those demos use toy datasets, but should give you an idea of how to train a perceptron.
Then scroll up to the section "Pattern Recognition and Classification", and take a look at the demo "Wine Classification". The Wine dataset this demo uses is part of the UCI repository. Adapt and combine the demos you've now learnt from, to create an example your prof will like.
Neural Network Toolbox also comes with the Iris dataset that is part of the UCI repository. You may also find a demo somewhere that uses this as an example.
Hope that helps!

Related

How would I find the cost of a neural network without knowing the target output like for a game?

For example,
I want to create an AI that plays Ticktacktoe, this is how I would go about it.
I have 9 input nodes which is for each space on the board, 3 nodes for one hidden layer (which I'm guessing would somehow benefit the AI by having it select a row or column with 3 spaces), and then 9 output nodes to see where the AI would put its mark on the entire board.
I'm lost on how I would find the cost of this neural network because I don't know how I would judge its prediction and affect its weights and biases.
If I wanted the AI to play a guessing game, it would make sense since I have the correct answer and I can teach it to be more accurate based on how off it was to the actual answer.
(NOTE: I am very new to neural networks, so there may be a simple answer that I've missed somewhere)
So, I did some digging around and found a good introduction to reinforcement learning. This is the method that is used to train neural networks to achieve a goal without knowing an exact target like which move is good in a certain scenario. Backpropagation is not the only learning method, but so many sources only used this method without letting the viewer know of any other methods which confused me.
Going through this playlist right now: https://www.youtube.com/watch?v=2pWv7GOvuf0&index=1&list=PL7-jPKtc4r78-wCZcQn5IqyuWhBZ8fOxT
Hope this will help someone getting started with neural networks!

Trying to train the ImageNet model with Region CNN (R-CNN)

After several month working with caffe, I've been able to train my own models successfully. For example further than my own models, I've been able to train ImageNet with 1000 classes.
In my project now, I'm trying to extract the region of my interest class. After that I've compiled and run the demo of Fast R-CNN and it works ok, but the sample models contains only 20 classes and I'd like to have more classes, for example all of them.
I've already downloaded the bounding boxes of ImageNet, with the real images.
Now, I've gone blank, I can't figure out the next steps and there's not a documentation of how to do it. The only thing I've found is how to train the INRIA person model, and they provide dataset + annotations + python script.
My questions are:
Is there maybe any tutorial or guide that I've missed?
Is there already a model trained with 1000 classes able to classify images and extract the bounding boxes?
Thank you very much in advance.
Regards.
Rafael.
Dr Ross Girshik has done a lot of work on object detection. You can learn a lot from his detailed git on fast RCNN: you should be able to find a caffe branch there, with a demo. I did not use it myself, but it seems very comprehensible.
Another direction you might find interesting is LSDA: using weak supervision to train object detection for many classes.
BTW, have you looked into faster-rcnn?

Multilayer backpropagation with NETLAB toolbox

I am trying to use the NETLAB toolbox to train a 3-layer (input,hidden,output) feed-forward backpropagation Neural Network. Unfortunately I do not have too much freedom in terms of network architecture I can work with.
I notice NETLAB has the following functions that I need: mlp,mlpbkp,mlpfwd,mlpgrad. I am not sure in what order I need to call the above functions to train the network. The help manual is not of too much help either.
If any of you have used the NETLAB toolbox, kindly let me know.
Also, if you know of other free toolboxes I can use in lieu of NETLAB, kindly, let me know.
Thanks!
You can find some basic examples on usage of NETLAB online here, the following is just the header:
A Simple Program The "Hello world" equivalent in Netlab is a programme
that generates some data, trains an MLP, and plots its predictions.
The online demo is a brief version of a longer demo available with the program, and uses functions mlp and mlpfwd.
In the downloads page you'll find that you can download help files, too.
If you get stuck you may (perhaps as a last resort) want to contact the authors.
edit
I understand that pointing to help files might not be what you were looking for. As you rightly point out, there is little documentation (perhaps more importantly no demos that I could find) on performing backpropagation, and definitely not with 3 layers. The available function mlpbkp backpropagates for a 2-layer network.

Neuroph Vs Encog

I have decided to use a feed-forward NN with back-propagation training for my OCR application for Handwritten text and the input layer is going to be with 32*32 (1024) neurones and at least 8-12 out put neurones.
I found Neuroph easy to use by reading some articles at the same time Encog is few times better in performance. Considering the parameters in my scenario which API is the most suitable one. And I appreciate if u can comment on the number of input nodes i have taken, is it too large value (Although it is out of the topic)
First my disclaimer, I am one of the main developers on the Encog project. This means I am more familiar with Encog that Neuroph and perhaps biased towards it. In my opinion, the relative strengths of each are as follows. Encog supports quite a few interchangeable machine learning methods and training methods. Neuroph is VERY focused on neural networks and you can express a connection between just about anything. So if you are going to create very custom/non-standard (research) neural networks of different typologies than the typical Elman/Jordan, NEAT, HyperNEAT, Feedforward type networks, then Neuroph will fit the bill nicely.

multilayer perceptron matlab code

I need simple matlab code for prediction
i want to use multilayer perceptron
I have 4 input and 1 output
I need code for training the algorithm and other one for test with new data
This is a previous answer from #jbrown:
Geoff Hinton is the man when it comes to multilayer perceptrons. His Science paper from 2006 used a special class of MLP called an "autoencoder" that was successful in digit recognition, facial recognition, and document classification (all of which have real world applications): Reducing the Dimensionality of Data with Neural Networks
Fortunately, they also published the Matlab code.
Also take a look here
Well....as you are asking for code directly. I don't think that there is someone that will give you the code,but I can give you the direction. If you have access to MATLAB(R), there is nice implementation of MLP and all you have to do is to fill in the blank...
But there is always better one, but I believe that the best one is always the one that you implemented yourself.
GOOD LUCK.
"MLP Neural Network with Backpropagation", that is what you are searching for:
http://www.mathworks.com/matlabcentral/fileexchange/54076-mlp-neural-network-with-backpropagation