Tagged Questions
The perceptron tag has no wiki summary.
12
votes
4answers
1k views
Help with Perceptron
Here is my perceptron implementation in ANSI C:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
float randomFloat()
{
srand(time(NULL));
float r = (float)rand() / ...
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 ...
6
votes
1answer
387 views
OpenCV::ML - is it possible to tell openCV which parts of data we want to send to which neuron?
So here is shown a simple example - 2 floats as data + 1 float as output:
Layer 1: 2 neurons (2 inputs)
Layer 2: 3 neurons (hidden layer)
Layer 3: 3 neurons (hidden ...
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
965 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
723 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 ...
3
votes
1answer
194 views
Can I use hadoop to train a neutral network?
I want to train a neural network with the help of Hadoop. We know when training a neural network, weights to each neuron are altered every iteration, and each iteration depends on the previous. I'm ...
3
votes
1answer
282 views
How to manage connections of neurons inside ANN using OpenCV::ML?
So there is grate sample (only one real sample we found). And it is quite limiting. It shows how to create an architecture of artificial neutral network where all neurons of one layer are connected ...
2
votes
3answers
726 views
perceptron algorithm [closed]
I need perceptron algorithm code with matlab.
Can you help me ?
Thanks
1
vote
1answer
36 views
Scatter plot of handwritten digits
I want to create a scatter plot of handwritten digits of 0 and 1 (http://yann.lecun.com/exdb/mnist/). I took 4 samples ie two 0's and two 1's.
Each handwritten digits are having pixel values having ...
1
vote
3answers
142 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
167 views
Inconsistent behaviour with Haskell
I was reading on perceptrons and trying to implement one in haskell. The algorithm seems to be working as far as I can test. I'm going to rewrite the code entirely at some point, but before doing so I ...
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
1answer
106 views
Off the shelf discriminative reranking software
Is there existing software for discriminative reranking, such as that used by the Charniak NLP parser, Shen, Sarkar, and Och's parser or Shen and Joshi's techniques? I'd like something that I can ...
1
vote
2answers
240 views
Single network - multiple outpus, or multiple networks - single output?
When designing a feed forward neural network with multiple outputs, is there a conceptual difference (other than computational efficency) between having a single network with multiple outputs, and ...
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
0answers
44 views
reHello! I need help with my perceptron code
I have made a perceptron code using matlab, but somehow, something isn't right...
maybe the equation or the syntax. What do you think? Any comments/suggestions would be helpful. Thanks.
function mao
...
0
votes
1answer
57 views
Does it makes any sense that weights and threshold are growing proportionally when training my perceptron?
I am moving my first steps in neural networks and to do so I am experimenting with a very simple single layer, single output perceptron which uses a sigmoidal activation function. I am updating my ...
0
votes
1answer
161 views
perceptron classification and R
I have four points: a=(-0.5, -0.5) b=(-0.5, 0.5) c=(0.3, -0.5) d=(0.0, 1.0)
I need to classificate these points, first a,b and after c, d
The first step is to define the perceptron, but, What is the ...
0
votes
1answer
319 views
Where to get a source example of creation of a Multi-layer Perceptron using openCV?
I need an example of Multi-layer Perceptron (with at least 3 layers) C/C++ programm using openCV. Where can I get one?
0
votes
2answers
449 views
creating a train perceptron in MATLAB for gender clasiffication
I am coding a perceptron to learn to categorize gender in pictures of faces. I am very very new to MATLAB, so I need a lot of help. I have a few questions:
I am trying to code for a function:
...
0
votes
1answer
388 views
creating a train perceptron (single layer) for gender classification using MATLAB
I need to create a perceptron for facial gender classification using MATLAB. I have NEVER used MATLAB before and am so extremely lost. ANY help at all will be so greatly appreciated - I could really ...
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 ...
0
votes
1answer
969 views
How can I implement AND, OR and XOR logic using perceptrons in C#?
I am learning neural networks basics.
How can I implement AND, OR and XOR logic using perceptrons in C#?
0
votes
1answer
982 views
how to train a network using single layer perceptron for ocr?
I'm developing a program to recognize a character from a image using OCR techniques. Up till now I have used a method that scanned the image, but now I have to use neural networks. Please explain what ...
-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 ...