-
-
Save truemped/a43e810e2dce6cc0b94e4a5c7d7b0a0b to your computer and use it in GitHub Desktop.
Norvig spellchecker in clojure by rich hickey
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 words [text] (re-seq #"[a-z]+" (.toLowerCase text))) | |
(defn train [features] | |
(reduce (fn [model f] (assoc model f (inc (get model f 1)))) {} features)) | |
(def *nwords* (train (words (slurp "big.txt")))) | |
(defn edits1 [word] | |
(let [alphabet "abcdefghijklmnopqrstuvwxyz", n (count word)] | |
(distinct (concat | |
(for [i (range n)] (str (subs word 0 i) (subs word (inc i)))) | |
(for [i (range (dec n))] | |
(str (subs word 0 i) (nth word (inc i)) (nth word i) (subs word (+ 2 i)))) | |
(for [i (range n) c alphabet] (str (subs word 0 i) c (subs word (inc i)))) | |
(for [i (range (inc n)) c alphabet] (str (subs word 0 i) c (subs word i))))))) | |
(defn known [words nwords] (seq (for [w words :when (nwords w)] w))) | |
(defn known-edits2 [word nwords] (seq (for [e1 (edits1 word) e2 (edits1 e1) :when (nwords e2)] e2))) | |
(defn correct [word nwords] | |
(let [candidates (or (known [word] nwords) (known (edits1 word) nwords) | |
(known-edits2 word nwords) [word])] | |
(apply max-key #(get nwords % 1) candidates))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment