BrandowBuenos / adaline-implementation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Adaline implementation

To execute, make sure you have Node installed in your machine and run the following commands:

cd src
node adaline.js > out.ppm

You can change criaTreinamento parameters to receive OR, AND or XOR, like following:

adaline.criaTreinamento(AND);
adaline.criaTreinamento(OR);
adaline.criaTreinamento(XOR);

Thanks to Professor Marcelo Thielo, for making the base code available for learning questions.

About


Languages

Language:JavaScript 67.6%Language:TypeScript 32.4%