In pybrain LSTM layer there are these buffer that are used to store values.
'bufferlist': [ ('ingate', 20),
('outgate', 20),
('forgetgate', 20),
('ingatex', 20),
('outgatex', 20),
('forgetgatex', 20),
('state', 20),
('ingateError', 20),
('outgateError', 20),
('forgetgateError', 20),
('stateError', 20),
('inputbuffer', 80),
('inputerror', 80),
('outputbuffer', 20),
('outputerror', 20)],
Could anyone explain what these variables are for? I am trying to get the activation of an LSTM layer. Which variable should I take?