GitXplorerGitXplorer
d

Perceptron

public
3 stars
2 forks
0 issues

Commits

List of commits on branch master.
Unverified
6a78f1cbbaa60b10bb6d840cbb04530f95f2372f

Add Makefile.

ddavidalbertonogueira committed 8 years ago
Unverified
8f581e85c807810a3897d727b16ee4984e260f80

Small change.

ddavidalbertonogueira committed 8 years ago
Unverified
955c737363e9339466322775bff007e6c3d03061

Add comment regarding simplified delta rule for a neuron with linear function.

ddavidalbertonogueira committed 8 years ago
Unverified
86cca02d46c7c9027896138c2af5dccc5aae5fcd

Bias in training samples is added in the test code.

ddavidalbertonogueira committed 8 years ago
Unverified
e011cbe4b211e67a3f63dbfd8031682e4f66a8d1

Small changes.

ddavidalbertonogueira committed 8 years ago
Unverified
dad0689e32dff72ae209ea1f94e122f7223cef01

MISC Update sample definition and test procedures.

ddavidalbertonogueira committed 8 years ago

README

The README file for this repository.

Perceptron

Simple perceptron c++ implementation.

The single-layer perceptron is the simplest feedforward neural network.

The perceptron, being a linear classifier, will only converge if the training set is linearly separable, i.e. if there is a hyperplane that separates the positive samples (or examples) from the negative ones.

David Nogueira, 2016.03.26