Views
No views yet
dummy.py
A simple feed-forward neural network using only linear layers.
"it does not use any non-linear activation functions".vanilla.py
A feed-forward neural network that extends the previous model by introducing
non-linear activation functions (ReLU).dummy_weights.bin
The trained weights for the model defined in dummy.py.vanilla_weights.bin
The trained weights for the model defined in vanilla.py.hubconf.py
This file allows both models to be loaded easily with
their corresponding trained weights automatically loaded.