Created
September 19, 2010 20:02
-
-
Save aria42/587070 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defn gibbs-sample [state word-info] | |
| (let [state (unassign state word-info) | |
| scores (map (partial score-assign state word-info) (range *K*)) | |
| sample-tag (sample-from-scores scores)] | |
| (assign state word-info sample-tag))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment