Presentation is loading. Please wait.

Presentation is loading. Please wait.

Computing Science, University of Aberdeen1 CS4025: Grammars l Grammars for English l Features l Definite Clause Grammars See J&M Chapter 9 in 1 st ed,

Similar presentations


Presentation on theme: "Computing Science, University of Aberdeen1 CS4025: Grammars l Grammars for English l Features l Definite Clause Grammars See J&M Chapter 9 in 1 st ed,"— Presentation transcript:

1 Computing Science, University of Aberdeen1 CS4025: Grammars l Grammars for English l Features l Definite Clause Grammars See J&M Chapter 9 in 1 st ed, 12 in 2 nd, Prolog textbooks (for DCGs)

2 Computing Science, University of Aberdeen2 Grammar: Definition The surface structure (syntax) of sentences is usually described by some kind of grammar. l A grammar defines syntactically legal sentences. »John ate an apple(syn legal) »John ate apple(not syn legal) »John ate a building(syn legal) l More importantly, a grammar provides a description of the structure of a legal sentence

3 Computing Science, University of Aberdeen3 Facts about Grammars l There is no single “correct”or “complete” grammar for any natural language (though people have tried to make them and certain terminology has emerged that is generally useful). l Linguists dispute exactly what formalism should be used for stating a grammar. l Linguists dispute exactly what data the grammar should apply to. l Grammars describe subsets of NLs. They all have their strengths and weaknesses.

4 Computing Science, University of Aberdeen4 Sentence Constituents l Grammar rules mention constituents (e.g. NP – noun phrase) as well as single word types (noun) l A constituent can occur in many rules »NP also after a preposition (near the dog), in possessives (the cat’s paws),... l These capture to some extent ideas such as: »Where NP occurs in a rule, any phrase of this class can appear »NP’s have something in common in terms of their meaning »Two phrases of the same kind, e.g. NP, can be joined together by the word “and” to yield a larger phrase of the same kind. Phrase structure tests.

5 Computing Science, University of Aberdeen5 Common Constituents l Some common constituents »Noun phrase: the dog, an apple, the man I saw yesterday »Adjective phrase: happy, very happy »Verb group: eat, ate, am eating, have been eating. »Verb phrase: eating an apple, ran into the store »Prepositional phrase: in the car »Sentence: A woman ate an apple. l Constituents named “X phrase” in general have a most important word, the head, of category X (underlined above). The head determines properties of the rest of the phrase.

6 Computing Science, University of Aberdeen6 Phrase-Structure Grammar l PS grammars use context-free rewrite rules to define constituents and sentences »S => NP Verb NP l Similar to rules used to define syntax of programming languages. »if-statement => if condition then statement l Also called context-free grammar (CFG) because the context does not restrict the application of the rules. l Adequate for (almost all of?) English »see J&M, chap 13

7 Computing Science, University of Aberdeen7 A simple grammar –S => NP VP –NP => Det Adj* Noun –NP => ProperNoun –VP => IntranVerb –VP => TranVerb NP –Det: a, the –Adj: big, black –CommonNoun: dog, cat –ProperNoun: Fido, Misty, Sam –IntranVerb: runs, sleeps –TranVerb: chases, sees, saw How does this assign structure to simple sentences?

8 Computing Science, University of Aberdeen8 Example: Sam sleeps VP (VerbPhrase) IntranVerb Samsleeps Sentence ProperNoun NP (NounPhrase) Rewrite/expansion rules.

9 Computing Science, University of Aberdeen9 Ex: The cat sees the dog VP Det Noun TranVerb catseesthedog Sentence NP The Det Noun NP

10 Computing Science, University of Aberdeen10 Fido chases the big black cat VP Det Adj TranVerb Fidochasesthebig Sentence NP ProperNoun NP Adj black Noun cat

11 Computing Science, University of Aberdeen11 Recursion l NL Grammars allow recursion NP = Det Adj* CommonNoun PP* PP = Prep NP l For example: The big cat... The big black wild cat.... The man in the store saw John. I fixed the intake of the engine of BA’s first jet.

12 Computing Science, University of Aberdeen12 The man in the store saw John man Sentence PP Det Noun Prep inthestore NP The Det Noun NP VP [saw John]

13 Computing Science, University of Aberdeen13 Grammar is not everything l Sentences may be grammatically OK but not acceptable (acceptability?) »The sleepy table eats the green idea. »Fido chases the black big cat. l Sentences may be understandable even if grammatically flawed. »Fido chases a cat small. BUT: l Grammar terminology may be useful for describing sentences even if they are flawed (e.g. in tutoring systems) l Grammars may be useful for analysing fragments within unrestricted and badly-formed text.

14 Computing Science, University of Aberdeen14 Features l Features are annotations on words and consituents l Grammar rules use unification (as in Prolog) to manipulate features. (See references on unification, which is informally feature matching to the most common feature set.) l Allow grammars to be smaller and simpler. If we accommodated all features in the above grammar, it would be very complex. l See J&M, chap 11 (1 st edition), chap 15 (2 nd edition)

15 Computing Science, University of Aberdeen15 Ex: Number l One feature is [number:N], where N is singular or plural. »A noun’s number comes from morphology (and semantics) –cat- singular noun –cats- plural noun »An NP's number comes from its head noun »A VP’s number comes from its verb (or auxiliary verb) –is happy- singular VP –are happy- plural VP »NP and VP must agree in number: –The rat has an injury –*The rat have an injury

16 Computing Science, University of Aberdeen16 Ex: Number l Similar issue between determiners and the head common noun: »This tall man... »*This tall men... »*These tall man... »These tall men... l Languages can be richer (Slavic) or poorer (English, Chinese) morphologically (analysis of word forms). l Many different sorts of features in the world's languages (animacy, shape, gender,...).

17 Computing Science, University of Aberdeen17 Modified Grammar »S => NP[num:N] VP[num:N] »NP[num:N] => Det[num:N] Adj* Noun[num:N] PP* »NP[num:singular] => ProperNoun »VP[num:N] => IntranVerb[num:N] »VP[num:N] => TranVerb[num:N] NP »PP => Prep NP »Noun[num:sing]: dog »Noun[num:plur]: dogs etc. »??Sentence features?

18 Computing Science, University of Aberdeen18 Example rule NP[num:N] = Det[num:N] Adj* Noun[num:N] l An NP’s determiner and noun (but not its adjectives in English v Russian) must agree in number. –this dog is OK –these dogs is OK –this dogs is not OK (det must agree) –these dog is not OK (det must agree) –the big red dog is OK –the big red dogs is OK (adjs don’t agree) l [number of NP] is [number of Noun] l Might also need some 'feature passing' in complex structures.

19 Computing Science, University of Aberdeen19 Ex: These cats see this dog VP[plur] Det[sing] Noun[sing] TranVerb[plur] catsseethisdog Sentence[plur] NP[sing] These Det[plural] Noun[plur] NP[plur]

20 Computing Science, University of Aberdeen20 Ex: *This cats see this dog VP[plur] Det[sing] Noun[sing] TranVerb[plur] catsseethisdog *Sentence[] NP[sing] This Det[sing] Noun[plur] NP[??]

21 Computing Science, University of Aberdeen21 Other features l Person (I, you, him) l Verb form (past, present, base, past participle, pres participle) l Gender (masc, fem, neuter) l Polarity (positive, negative) l etc, etc, etc

22 Computing Science, University of Aberdeen22 Definite Clause Grammars l A definite clause grammar (DCG) is a CFG with added feature information l The syntax is also Prolog-like, and DCGs are usually implemented in Prolog l You don’t need to know Prolog to use DCGs l The formalism was (partially) invented in Scotland

23 Computing Science, University of Aberdeen23 DCG Notation (1) l Use ---> between rule LHS and RHS. l Non-terminal symbols (e.g., np) written as Prolog constants (start with lower case letters) l Features (eg, Num) are arguments in () »Features are shown by position, not name »Prolog variables (start with upper case letters) indicate unknown values l Actual words are lists, in [] l Prolog tests can be attached in {} l _ is the ``wild card'' variable l (Optional) use distinguished predicate to define the goal symbol (eg, s).

24 Computing Science, University of Aberdeen24 DCG Notation (2) Rule notationDCG notation S => NP VPs ---> np, vp. S[num:N] => NP[num:N] VP[num:N]s(Num) ---> np(Num), vp(Num). N => dogn ---> [dog]. N => New Yorkn ---> [new, york]. NP => np ---> [X], {isname(X)}. NB the number of “-” in the “--->” varies according to the implementation Variables have to match, e.g. N, Num, X....

25 Computing Science, University of Aberdeen25 An example DCG distinguished(s). s ---> np(Num), vp(Num). np(Num) ---> det(Num), noun(Num). np(sing) ---> name. vp(Num) ---> intranverb(Num). vp(Num) ---> tranverb(Num), np(_). _ means no constraint on Num agreement between verb and direct object. det(_) ---> [the]. noun(sing) ---> [dog]. name ---> [sam]. intranverb(sing) ---> [sleeps]. intranverb(plur) ---> [sleep]. tranverb(sing) ---> [chases]. tranverb(plur) ---> [chase].

26 Computing Science, University of Aberdeen26 DCG’s and Prolog l DCG’s are translated into Prolog in a fairly straightforward fashion »See Shapiro, The Art of Prolog l In fact, Prolog was originally designed as a language for NLP, as part of a machine-translation project. l Prolog has evolved since, but is still well-suited to many NLP operations.

27 Computing Science, University of Aberdeen27 Edinburgh Package l We will use a parsing system for DCGs developed (for teaching purposes) by Holt and Ritchie from Edinburgh University. l Use SWI Prolog

28 Computing Science, University of Aberdeen28 Using the package l Statements always end with “.” l Prompt is ?- l Type code into a file, not directly into the interpreter. l Load files with[file]. ».pl= prolog source l By default, type “n.” to backtrack request

29 Computing Science, University of Aberdeen29 Using the DCG package ?- prp([sam, chases, the, dog]). parse and pretty print ?- prp(np, [the, dog]). parse and print an np ?- parse([sam, chases, the, dog], X). returns parse in X ?- parse(np, [the, dog], X). parse a constituent (np) For all the above, after each parse is printed, you will be asked if you want to look for additional parses NB for other DCG implementations, the grammar writer explicitly builds parse structures in the grammar rules.

30 Computing Science, University of Aberdeen30 Other Grammar Formalisms l Many other grammar formalisms »GPSG, HPSG, LFG, TAG, ATN, GB,... l No consensus on which is best, although many strong opinions (like C vs Pascal vs Lisp) l Like programming languages, formalism used often determined by experience of developers, and available support tools


Download ppt "Computing Science, University of Aberdeen1 CS4025: Grammars l Grammars for English l Features l Definite Clause Grammars See J&M Chapter 9 in 1 st ed,"

Similar presentations


Ads by Google