-
-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add options to not use bias in Linear (and Conv in future) #100
Comments
Maybe a better option is to include bias as a |
I think having a Linear module is much better than just using a tuple. I feel like if you specifically want no bias, then just use |
i think it's something like this (and maybe |
* #100 Separating bias from Conv2d * Fixing doctest
I think this code be done by implementing
Linear
as a tuple instead:(MatMul<I, O>, Add<O>)
, and then if someone doesn't want bias, they can justMatMul<I, O>
instead.However, this would break linear's
.npz
compatibility with pytorch.The text was updated successfully, but these errors were encountered: