A simple Neural Network from scratch in Python using the Pymathrix library

A Simple Neural Network from scratch in Python using the Pymathrix library.
Check the Pymathrix documentation.

Usage

Import the Pymathrix library into your python code:

>>> import pymathrix as px

Create the input data matrix:

>>> inputs = px.matrix(1, 3) >>> inputs.assign([1, 1, -1])

Create the neural network object: