[Caml-list] N-gram models

2009-01-08 Thread Alexy Khrabrov
Does anybody have/know of ngram language models implemented in OCaml, particularly Kneser-Ney smoothing? Cheers, Alexy ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives:

Re: [Caml-list] N-gram models

2009-01-08 Thread Eliot Handelman
Alexy Khrabrov wrote: Does anybody have/know of ngram language models implemented in OCaml, particularly Kneser-Ney smoothing? I assume you've seen John Hale's site -- if not there, he'd be a good person to ask. http://www.msu.edu/course/lin/475/ best, -- eliot

[Caml-list] Shared libraries with ocamlopt callable from C (without main())?

2009-01-08 Thread Ben Aurel
hi I'm thinking about the possibility to use OCaml as an extension language. If I wanted to call a OCaml function from langX I had to use a C wrapper. langX - ( C API of langX | C Wrapper | C API of OCaml ) - OCaml Maybe I make it more complicated than it is. But could somebody tell me if (