# HG changeset patch # User Robert McIntyre # Date 1398608265 14400 # Node ID 39ee58fef9d8936886cd4f31cb0d3df9fd781a57 # Parent 122524d39652de78f803fef0d57ce5e958b86086 spellcheck. diff -r 122524d39652 -r 39ee58fef9d8 thesis/cortex.org --- a/thesis/cortex.org Sun Apr 27 09:40:19 2014 -0400 +++ b/thesis/cortex.org Sun Apr 27 10:17:45 2014 -0400 @@ -2822,29 +2822,29 @@ experience vector: An /experience-index/ is an index into the grand experience vector - that defines the worm's life. It is a timestamp for each set of + that defines the worm's life. It is a time-stamp for each set of sensations the worm has experienced. First, group the experience-indices into bins according to the similarity of their proprioceptive data. I organize my bins into a - 3 level heirachy. The smallest bins have an approximate size of + 3 level hierarchy. The smallest bins have an approximate size of 0.001 radians in all proprioceptive dimensions. Each higher level is 10x bigger than the level below it. The bins serve as a hashing function for proprioceptive data. Given a single piece of proprioceptive experience, the bins allow us to - rapidly find all other similiar experience-indices of past - expreience that had a very similiar proprioceptive configuration. + rapidly find all other similar experience-indices of past + experience that had a very similar proprioceptive configuration. When looking up a proprioceptive experience, if the smallest bin - does not match any previous experience, then succesively larger + does not match any previous experience, then successively larger bins are used until a match is found or we reach the largest bin. Given a sequence of proprioceptive input, I use the bins to - generate a set of similiar experiencs for each input using the + generate a set of similar experiences for each input using the tiered proprioceptive bins. Finally, to infer sensory data, I select the longest consecutive - chain of experiences that threads through the sets of similiar + chain of experiences that threads through the sets of similar experiences. Consecutive experience means that the experiences appear next to each other in the experience vector.