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
Here, $S_i \in \{-1, +1\}$ is the current state of neuron $i$.
51
+
Here, $S_i \in \{-1, +1\}$ is the current state of neuron $i$. To "retrieve" a memory:
52
+
- Start by setting all of the neural activations to the **cue**.
53
+
- Loop through all neurons (in a random order), updating one at a time according to the above equation, given the weight matrix ($J$) and the current activities of each of the other neurons.
54
+
- Continue looping until either (a) you have "updated" every neuron in the latest loop, but no activities have changed, or (b) a maximum number of iterations is reached.
55
+
- Return the current state of the network as the retrieved memory.
0 commit comments