Tagged Questions

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() / ...
2
votes
3answers
813 views

perceptron algorithm [closed]

I need perceptron algorithm code with matlab. Can you help me ? Thanks
1
vote
2answers
170 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 ...
0
votes
2answers
146 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 ...