Skip to content

Instantly share code, notes, and snippets.

@aria42
Created September 19, 2010 20:02
Show Gist options
  • Select an option

  • Save aria42/587070 to your computer and use it in GitHub Desktop.

Select an option

Save aria42/587070 to your computer and use it in GitHub Desktop.
(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