Tagged Questions

4
votes
3answers
282 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 possibi …
4
votes
7answers
635 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 …
3
votes
4answers
132 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 …
1
vote
2answers
258 views

Free implementation of multi-layer perceptron?

The question says it all really! 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 …
0
votes
1answer
394 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
239 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. …