Difference between revisions of "Libraries and tools/Linguistics/Applicative universal grammar"

From HaskellWiki
Jump to navigation Jump to search
m (Applicative universal grammar moved to Libraries and tools/Linguistics/Applicative universal grammar)
((1) Splitting to sections: →‎Introduction: , →‎Details: , →‎Implementing these ideas: . (2) Making content less dens (lifting list to standalone paragraphs))
Line 1: Line 1:
 
__TOC__
 
__TOC__
   
  +
== Introduction ==
* A Haskell application for natural language parsing, based on ''Applicative Universal Grammar'' (AUG) is described in Mark P. Jones', Paul Hudak's and Sebastian Shaumyan's [http://citeseer.ist.psu.edu/jones95using.html Using Types to Parse Natural Language]. The Haskell source code given by the article is full, it can be run by Gofer, and after a few modification, by GHC too (''transpose'' must be explictly imported from standard library module ''Data.List'', and class ''Text'' renamed to ''Show'').
 
  +
* A more detailed description of the topic of this previous article described in Sebastian Shaumyan and Paul Hudak's [http://citeseer.ist.psu.edu/510871.html Linguistic, Philosophical, and Pragmatic Aspects of Type-Directed Natural Language Parsing]
 
* Bernard Paul Sypniewski's article [http://elvis.rowan.edu/~bps/ling/introAUG.pdf An Introduction to Applicative Universal Grammar]. The same author has also an [http://elvis.rowan.edu/~bps/ling/ling.htm entire homepage for the topic]. As an article describing what AUG is, see also Shaumyan's [http://citeseer.ist.psu.edu/shaumyan98two.html Two Paradigms of Linguistics: The Semiotic versus Non-Semiotic Paradigm].
+
Bernard Paul Sypniewski's article [http://elvis.rowan.edu/~bps/ling/introAUG.pdf An Introduction to Applicative Universal Grammar].
  +
* [http://citeseer.ist.psu.edu/573937.html Long-Distance Dependencies and Applicative Universal Grammar] (written by Sebastian Shaumyan and Frédérique Segond) compares (presenting some advantages of the latter)
 
  +
The same author has also an [http://elvis.rowan.edu/~bps/ling/ling.htm entire homepage for the topic].
** combinatory categorial grammar
 
  +
** applicative universal grammar
 
  +
As an article describing what AUG is, see also Shaumyan's [http://citeseer.ist.psu.edu/shaumyan98two.html Two Paradigms of Linguistics: The Semiotic versus Non-Semiotic Paradigm].
  +
  +
== Details ==
  +
 
[http://citeseer.ist.psu.edu/573937.html Long-Distance Dependencies and Applicative Universal Grammar] (written by Sebastian Shaumyan and Frédérique Segond) compares (presenting some advantages of the latter)
 
* combinatory categorial grammar
 
* applicative universal grammar
  +
  +
  +
== Implementing these ideas ==
  +
 
A Haskell application for natural language parsing, based on ''Applicative Universal Grammar'' (AUG) is described in Mark P. Jones', Paul Hudak's and Sebastian Shaumyan's [http://citeseer.ist.psu.edu/jones95using.html Using Types to Parse Natural Language]. The Haskell source code given by the article is full, it can be run by Gofer, and after a few modification, by GHC too (''transpose'' must be explictly imported from standard library module ''Data.List'', and class ''Text'' renamed to ''Show'').
  +
 
A more detailed description of the topic of this previous article described in Sebastian Shaumyan and Paul Hudak's [http://citeseer.ist.psu.edu/510871.html Linguistic, Philosophical, and Pragmatic Aspects of Type-Directed Natural Language Parsing]
   
 
[[Category:Theoretical foundations]]
 
[[Category:Theoretical foundations]]

Revision as of 23:43, 17 July 2006

Introduction

Bernard Paul Sypniewski's article An Introduction to Applicative Universal Grammar.

The same author has also an entire homepage for the topic.

As an article describing what AUG is, see also Shaumyan's Two Paradigms of Linguistics: The Semiotic versus Non-Semiotic Paradigm.

Details

Long-Distance Dependencies and Applicative Universal Grammar (written by Sebastian Shaumyan and Frédérique Segond) compares (presenting some advantages of the latter)

  • combinatory categorial grammar
  • applicative universal grammar


Implementing these ideas

A Haskell application for natural language parsing, based on Applicative Universal Grammar (AUG) is described in Mark P. Jones', Paul Hudak's and Sebastian Shaumyan's Using Types to Parse Natural Language. The Haskell source code given by the article is full, it can be run by Gofer, and after a few modification, by GHC too (transpose must be explictly imported from standard library module Data.List, and class Text renamed to Show).

A more detailed description of the topic of this previous article described in Sebastian Shaumyan and Paul Hudak's Linguistic, Philosophical, and Pragmatic Aspects of Type-Directed Natural Language Parsing