prolog programming a do it yourself course for beginners
play

Prolog programming: a do-it-yourself course for beginners Day 5 - PowerPoint PPT Presentation

Prolog programming: a do-it-yourself course for beginners Day 5 Kristina Striegnitz Department of Computational Linguistics Saarland University, Saarbr ucken, Germany kris@coli.uni-sb.de http://www.coli.uni-sb.de/kris Day 5: Definite


  1. Prolog programming: a do-it-yourself course for beginners Day 5 Kristina Striegnitz Department of Computational Linguistics Saarland University, Saarbr¨ ucken, Germany kris@coli.uni-sb.de http://www.coli.uni-sb.de/˜kris Day 5: Definite Clause Grammars (2) – p.1

  2. Day 5: Definite Clause Grammars (2) Today: DCG parsers Reader: Lecture 8 of Learn Prolog Now! Day 5: Definite Clause Grammars (2) – p.2

  3. Recognizers vs. Parsers Is this [the,bride,kills,bill] a sentence? recognizer: yes parser: yes, and its structure is s np vp np n det vt pn the bride kills bill Day 5: Definite Clause Grammars (2) – p.3

  4. Parse trees as complex terms s( s np( det(the), np vp n(bride) ), vp( np n vt det vt(kills), np( pn pn(bill) the bride kills ) ) bill ) Day 5: Definite Clause Grammars (2) – p.4

  5. Constructing the parse tree s --> np, vp. s(s(NPT,VPT)) --> np(NPT), vp(VPT). np --> det, n. np(np(DetT,NT)) --> det(DetT), n(NT). np --> pn. np(np(PNT)) --> pn(PNT). vp --> vi. vp(vp(ViT)) --> vi(ViT). vp --> vt, np. vp(vp(VtT,NPT)) --> vt(VtT), np(NPT). n --> [bride]. n(n(bride)) --> [bride]. n --> [nurse]. n(n(nurse)) --> [nurse]. det --> [the]. det(det(the)) --> [the]. pn --> [bill]. pn(pn(bill)) --> [bill]. vi --> [whistles]. vi(vi(whistles)) --> [whistles]. vt --> [kills]. vt(vt(kills)) --> [kills]. Day 5: Definite Clause Grammars (2) – p.5

  6. s(T,[the,bride,whistles],[]) An example T=s(T1,T2) np(T1,[the,bride,whistles], I1) vp(T2,I1,[]) T1=np(T3,T4) det(T3,[the,bride,whistles],I2) n(T4,I2,I1) vp(T2,I1,[]) T3=det(the) I2=[bride,kills,bill] n(T4,[bride,whistles],I1) vp(T2,I1,[]) T4=n(bride) I1=[kills,bill] vp(T2,[whistles],[]) T2=vp(T5) vi(T5,[whistles],[]) T5=vi(whistles) Day 5: Definite Clause Grammars (2) – p.6

  7. Practical Session Write your own DCG. http://www.coli.uni-sb.de/˜kris/esslli04prolog Day 5: Definite Clause Grammars (2) – p.7

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend