You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe not PR worthy, but I guess one can abstract the MLP implementation even more, making use of the layers instead of number of inputs and outputs yet again, since each individual layer already knows them.
Maybe not PR worthy, but I guess one can abstract the MLP implementation even more, making use of the layers instead of number of inputs and outputs yet again, since each individual layer already knows them.
As such, I wrote it as:
by which you can define a network more intuitively, much like PyTorch's Sequential:
To be even more rigorous, a dimension assertion can be added in the
__init__
:for which I would have to store the
nin
&nout
for the layers in the as well:The text was updated successfully, but these errors were encountered: