Remove bias from Weights.hpp
jramapuram opened this issue · 3 comments
jramapuram commented
Weights are currently initializing bias'
This is not always desirable, eg LSTM:
/* Standard LSTM Implementation
* Reference: http://deeplearning.net/tutorial/lstm.html
* Refernece: http://www.cs.toronto.edu/~graves/phd.pdf */
Weights mWi, mUi, mIDiffs; // input gate weights + recurrence
Weights mWf, mUf, mFDiffs; // forget gate weights + recurrence
Weights mWc, mUc, mCDiffs; // memory cell weights + recurrence
Weights mWo, mUo, mODiffs; // output gate weights + recurrence
Here, each node needs only needs 1 bias, i.e. 1 bias for input gate (as opposed to the 2 we will now have for mWi & mUi)
Either we should :
- refactor the above file into 2 files or
- we can provide a way to NOT initialize the bias in the CTOR
To me 1. makes more sense
pavanky commented
I think it is best to have just one Weights
class. I see no reason for them to be combined. I think I just did what I did because it was easier during the prototype phase of LinearNode
.
jramapuram commented
👍
pavanky commented
Fixed in master.