Skip to content

Files

Latest commit

8bbb94a · Jan 1, 2024

History

History

numpy-nn

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jan 1, 2024
Jan 1, 2024
Jan 1, 2024
Jan 1, 2024
Jan 1, 2024
Jan 1, 2024

Custom NN Modules with Numpy

Implemenation. layers.py Numpy implementation of the following modules:

  • ReLU
  • Tanh
  • Sigmoid
  • Linear (Dense)
  • LogSoftmax

loss.py Negative log likelihood.

Optimizer. I used scipy.optimize.minimize function with L-BFGS-B method.

Experiments.