Parts-of-speech tagging with Clojure
One of the classical problems in Natural Language Processing is parts-of-speech tagging i.e. given a sentence of length n, find the sequence of part-of-speech tags for each word in the sentence. For example, $$\text{POS(“the”,”man”,”walks”) = (“article”,”noun”,”verb”)}$$ There are several approaches to parts-of-speech tagging, and…