Machine Learning for Human Memorization
blog.smellthedata.com
Machine Learning for Human Memorization
1–7 of 7 posts
Re: Machine Learning for Human Memorization
#2Re: Machine Learning for Human Memorization
#3Re: Machine Learning for Human Memorization
#4Re: Machine Learning for Human Memorization
#5I gave only a quick read, and I'm completely unfamiliar with Scrabble... but: why not use a Markov chain? I would start looking at the two step case, using only the most probable letter. In this case you have to remember a 26x26 matrix, if this doesn't work you can extend it to the top-n letters.
Re: Machine Learning for Human Memorization
#6I gave only a quick read, and I'm completely unfamiliar with Scrabble... but: why not use a Markov chain? I would start looking at the two step case, using only the most probable letter. In this case you have to remember a 26x26 matrix, if this doesn't work you can extend it to the top-n letters.
The Danny complexity of this is pretty high, though. I'd go so far as to say it's harder to memorize 702 arbitrary real numbers than it is to memorize 972 three letter words.
But I like a variation on this, which is to find a low rank representation of the transition matrix, P(next letter | letter) = A x B, where A is a 26 x k matrix, and B is a k x 26 matrix. Setting k to be 2 or 3 and rounding to say 2 or 3 decimal places might be manageable to memorize.
Re: Machine Learning for Human Memorization
#7Another question: are there other scenarios outside of playing Scrabble where something like this would be useful?
The one thing I'd consider adding is memorizing the tuple (word, origin), because English's problem is that my first paragraph is simplified for English; we actually use many different distinct human patterns, and helping the brain partition the problem might be helpful.