Skip to content
This repository has been archived by the owner on Apr 21, 2024. It is now read-only.

Latest commit

 

History

History
10 lines (6 loc) · 643 Bytes

README.md

File metadata and controls

10 lines (6 loc) · 643 Bytes

JStorch

repository for abstracting details away from pytorch API for a simpler interface to set up NNs

JStorch provides even higher-level abstraction for building networks via pytorch than the built-in .nn library. The intended use is for quickly prototyping network architectures without worrying about lower-level details such as converting inputs/parameters to cuda arrays, ensuring batch normalization layers receive the correct # of inputs, etc.

Models include:

[X] DNN - a modular architecture for building a sequential deep NN with 1D inputs.

[x] RNN - stacked recurrent neural network, with optional MLP as final stacked network