Re: [Haskell-cafe] Natural Language Processing

2009-12-10 Thread Nils Anders Danielsson
On 2009-12-10 01:11, John D. Earle wrote: Is Parsec capable of parsing a mildly context sensitive language? I expect that one can parse any decidable language using Parsec. Whether it is convenient to do so is another question. -- /NAD ___ Haskell-Ca

Re: [Haskell-cafe] Natural Language Processing

2009-12-09 Thread wren ng thornton
John D. Earle wrote: Is Parsec capable of parsing a mildly context sensitive language? In particular does it parse a combinatory categorial grammar? Does Haskell have such tools in its shed? What sort of facilities does Haskell have for natural language processing? If you come back at the en

Re: [Haskell-cafe] Natural Language Processing

2009-12-09 Thread John D. Earle
Yes, I was referring to CCG. Thank you. -- From: "John Lask" Sent: 09 Wednesday December 2009 1920 To: "John D. Earle" Cc: "Haskell Cafe" Subject: Re: [Haskell-cafe] Natural Language Processing

Re: [Haskell-cafe] Natural Language Processing

2009-12-09 Thread John Lask
maybe this helps ... see http://www.cs.chalmers.se/~aarne/GF/ I quote from the web site: GF is "a categorial grammar formalism, like ACG, CCG, but different and equipped with different tools" it compiles with at least GHC 6.8.2 Is Parsec capable of parsing a mildly context sensitive language

Re: [Haskell-cafe] Natural Language Processing

2009-12-09 Thread John Meacham
On Wed, Dec 09, 2009 at 06:11:04PM -0700, John D. Earle wrote: > Is Parsec capable of parsing a mildly context sensitive language? In > particular does it parse a combinatory categorial grammar? Does > Haskell have such tools in its shed? What sort of facilities does > Haskell have for natural lang

[Haskell-cafe] Natural Language Processing

2009-12-09 Thread John D. Earle
Is Parsec capable of parsing a mildly context sensitive language? In particular does it parse a combinatory categorial grammar? Does Haskell have such tools in its shed? What sort of facilities does Haskell have for natural language processing? ___ Ha