Last active
September 25, 2017 18:51
-
-
Save jackrusher/4360119 to your computer and use it in GitHub Desktop.
A very simple implementation of Markov chaining in Clojure.
This file contains 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 model-from-sequence | |
"Returns a transition matrix of 'depth' from 'sequence'" | |
[depth sequence] | |
(loop [accum {} chunks (partition (inc depth) 1 (seq sequence))] | |
(if (seq? chunks) | |
(let [chunk (first chunks) | |
prefix (drop-last chunk) | |
suffix (last chunk)] | |
(recur (assoc accum prefix (conj (get accum prefix []) suffix)) (next chunks))) | |
accum))) | |
(defn chain | |
"Returns a lazy Markov chain starting with 'current' using matrix 'trans'" | |
[current trans] | |
(if-let [transitions (trans current)] | |
(cons (first current) | |
(lazy-seq (chain (concat (rest current) [(rand-nth transitions)]) trans))) | |
current)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment