Tagged Questions

7
votes
3answers
625 views

Can a perceptron be used to detect hand-written digits?

Let's say I have a small bitmap which contains a single digit (0..9) in hand writing. Is it possible to detect the digit using a (two-layered) perceptron? Are there other possibilities to detect ...
5
votes
7answers
2k views

What are some practical applications for a single layer perceptron?

I was having a look at this awesome tutorial on single layer perceptron. I tried the implementation out and it works like charm, but I was wondering if it's there any practical use for it as is (at ...
4
votes
4answers
964 views

implementing a perceptron classifier

Hi I'm pretty new to Python and to NLP. I need to implement a perceptron classifier. I searched through some websites but didn't find enough information. For now I have a number of documents which I ...
4
votes
2answers
722 views

Parameter Tuning for Perceptron Learning Algorithm

I'm having sort of an issue trying to figure out how to tune the parameters for my perceptron algorithm so that it performs relatively well on unseen data. I've implemented a verified working ...
1
vote
3answers
141 views

What's the point of the threshold in a perceptron?

I'm having trouble seeing what the threshold actually does in a single-layer perceptron. The data is usually separated no matter what the value of the threshold is. It seems a lower threshold divides ...
1
vote
2answers
93 views

To which weight is the correction added in a perceptron?

I'm experimenting with single-layer perceptrons, and I think I understand (mostly) everything. However, what I don't understand is to which weights the correction (learning rate*error) should be ...
1
vote
2answers
166 views

What is the 'order' of a perceptron

A few simple marks for those who know the answer. I'm doing revision for exams at the moment and one of the past questions is: What is meant by the order of a perceptron? I can't find any ...
1
vote
4answers
1k views

Free implementation of multi-layer perceptron?

Is there a free (preferably public-domain or BSD-like license, but GPL will do) implementation of a multi-layer perceptron anywhere on the net? I have textbook examples but the licenses are too ...
0
votes
1answer
161 views

How to plot the line that separates 2 classes,using output of perceptron MATLAB

after running the perceptron code in Matlab I get the following weights: result= 2.5799 2.8557 4.4244 -4.3156 1.6835 -4.0208 26.5955 -12.5730 11.5000 If i started with ...
0
votes
0answers
658 views

implementing the perceptron algorithm

Im sry I posted a similar question yesterday but for some reason I can't comment on it and I need some answers. I need to implement the perceptron algorithm to classify documents into categories. I ...
0
votes
2answers
143 views

How to convert my floating number to feed my Neural Network?

I've been reading some online tutorials about Neurons, Percepton and Multi Layer Perceptron concepts. Now, I would like to implement the concept in my own examples. What I would like to do is to ...
-21
votes
1answer
1k views

MATLAB: single layer neural network

For the implementation of single layer neural network, I have two data files. In: 0.832 64.643 0.818 78.843 Out: 0 0 1 0 0 1 The above is the format of 2 data files. The target output is ...