cellstate
Cellstate refers to the internal memory component of certain recurrent neural networks, most notably the long short-term memory (LSTM) unit. It acts as a conveyor belt for information, allowing signals to flow through time with limited modification, which helps preserve long-range dependencies in sequences such as language or time series. In an LSTM cell, the cell state is updated at each time step by balancing a forget mechanism and an input mechanism that adds new information.
In operation, the network uses three gates to control the flow of information into and out of
Variants and related units include the standard LSTM, where the cell state and hidden state are distinct,
Origins and usage: the concept was introduced in the late 1990s to address learning long-range dependencies