Benny-Nottonson / voodoo

A working machine learning framework in pure Mojo 🔥

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Generic model struct to encapsulate layers

Benny-Nottonson opened this issue · comments

Is your feature request related to a problem? Please describe.
Layers are currently declared one by one, and then called in forward layers one by one, it would be better dev ex to have a struct to encapsulate a variable amount of layers and chain the forward and backwards operations.

Describe the solution you'd like
A structure to hold arbitrary layers.

Describe alternatives you've considered
The current implementation works fine, it just isn't ideal.