/tinynnet

WIP. Waiting for sentdex to upload new videos ...

Primary LanguagePython

A tiny, proof of concept neural network framework, based on the Sentdex Tutorials

The only dependency is Numpy.

from tinynnet import SequentialNet
from tinynnet.layers import Dense
from tinynnet.act import ReLU, Softmax
from tinynnet.tools import to_categorical

net = SequentialNet([
  Dense(2, 3),
  ReLU(),
  Dense(3, 3),
  Softmax()
])
net.forward(data)