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() / ...
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
1k 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
758 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
1answer
42 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
2answers
95 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
1answer
108 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
253 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 ...
0
votes
0answers
19 views
Understanding fixed-increment single sample learning algorithm
I'm trying to wrap my head around the fixed-increment single-sample learning algorithm, I gather that it's the simplest case of neural network with two category and one output.
This is what I ...
0
votes
1answer
61 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
0answers
674 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 ...