Re: [ANN] cld 0.1.0 - Clojure Language Detection

2012-02-28 Thread Raju Bitter
Tested with Korean and German, and works great! user (cld.core/detect 한국 음식중에 김치가 제일 맛있어요.) [ko {ko 0.9998}] cld.core= (cld.core/detect In München steht ein Hofbräuhaus.) [de {de 0.972552285171}] -- You received this message because you are subscribed to the Google Groups

[ANN] cld 0.1.0 - Clojure Language Detection

2012-02-27 Thread Lee Hinman
Hi all, I'm pleased to announce the initial 0.1.0 release of cld (Clojure Language Detection). CLD a tiny library wrapping language-detect[1] that can be used to determine the language of a particular piece of text very quickly. You should be able to use it from Clojars[2] with the following:

Re: [ANN] cld 0.1.0 - Clojure Language Detection

2012-02-27 Thread Devin Walters
Cool. Time to get my cores to work extracting from pastebins. :) '(Devin Walters) On Feb 27, 2012, at 8:24 PM, Lee Hinman matthew.hin...@gmail.com wrote: Hi all, I'm pleased to announce the initial 0.1.0 release of cld (Clojure Language Detection). CLD a tiny library wrapping

Re: [ANN] cld 0.1.0 - Clojure Language Detection

2012-02-27 Thread Alex Ott
similar functionality is also available in clj-tika (https://github.com/alexott/clj-tika, and clojars) - you can detect language, mime-type of data extract text On Tue, Feb 28, 2012 at 3:24 AM, Lee Hinman matthew.hin...@gmail.com wrote: Hi all, I'm pleased to announce the initial 0.1.0 release