Installation Guide
ToyNN comes with multiple modules that are packaged together.
Requirements
ToyNN requires NodeJS v18.0.0 or higher to work.
Installation
To install/add ToyNN in your project you can use the following command:
Creating Models with ToyNN
ToyNN can be used to create complex neural networks. Let’s try to create a simple AND truth table neural network.
AND Truth Table
X | Y | Output |
---|---|---|
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
Implementation
Note: You can use ToyNN with typescript as well.