程序代写代做代考 scheme prolog University of Toronto, Department of Computer Science

University of Toronto, Department of Computer Science
CSC 2501F—Computational Linguistics, Fall 2016
Assignment 2
Due date: 12:10, Thursday 10 November 2016, in lecture.
Late assignments will not be accepted without a valid medical certificate or other documen- tation of an emergency.
This assignment is worth either 25% (CSC 2501) or 33% (CSC 485) of your final grade.
• Fill out both sides of the assignment cover sheet, and staple together all answer sheets (in order) with the cover sheet (sparse side up) on the front. (Don’t turn in a copy of this handout.)
• Please type your reports in no less than 12pt font; diagrams and tree structures may be drawn with software or neatly by hand.
• What you turn in must be your own work. You may not work with anyone else on any of the problems in this assignment. If you need assistance, contact the instructor or TA for the assignment.
• Any clarifications to the problems will be posted on the course bulletin board. You will be responsible for taking into account in your solutions any information that is posted there, or discussed in class, so you should check the page regularly between now and the due date.

1. Using features in grammars [10 marks]
Grammar 1 handles NPs of various different types. Grammar 2 is much simpler and easier to read, but doesn’t appropriately constrain the NPs generated.
Grammar 1
Rules:
S → NPnom VP
VP → V NPacc
PP → P NPacc NPnom → NP NPnom → PROnom NPacc → NP NPacc → PROacc NP → Det N
NP → Det N PP
NP → Npl
NP → Npl PP
N → Nsg
N → Npl
Lexicon:
She: PROnom fed: V
the: Det
dog: Nsg puppies: Npl him: PROacc with: P
Grammar 2 Rules:
S → NP VP VP → V NP PP → P NP NP → N
NP → Det N NP → Det N PP NP → N PP
Lexicon:
She: N fed: V
the: Det dog: N puppies: N him: N with: P
A. (2 marks) Code up Grammar 1 in ALE (using types for non-terminals), and show the parse tree for the following sentence according to that grammar:
She fed the dog with puppies with him.
Submit the grammar as the file onea.pl and the parse tree as onea.prs.
B. (7marks)CodeupGrammar2inALE,andaugmentitwithfeaturessoastorestrictits language to that of Grammar 1. You must use features. Do not add extra non-terminals.
Submit this grammar as the file oneb.pl.
C. (1 mark) Show the parse tree for the sentence in part A above, this time using your augmented Grammar 2.
2

Submit this output as the file onec.prs.
The SICStus Prolog binary can be found at teach.cs:/h/u2/csc485h/fall/pub/ sicstus. The ALE source code can be found at teach.cs:/h/u2/csc485h/fall/ pub/ale.pl. It will expect the file teach.cs:/h/u2/csc485h/fall/pub/ale3diff. pl to be in the same directory as ale.pl. Copy both to your own filespace. Do not copy SICStus Prolog; run this in situ by aliasing the command to the above pathname in your
shell. We will soon provide you with Prolog code that pretty-prints trees, with or without features, in a format appropriate for your assignment submission.
Hint: The mnemonics nom and acc stand for nominative and accusative, the cases for sub- jects and direct objects.
3

2. Verb complements and gap features [20 marks]
Gap features enable us to assign the right grammatical functions to the arguments of a verb, which in turn guarantees that they will be assigned the right thematic roles. For example, in the grammar for the passive construction that we saw in class, we can associate the NP subject with the object position through a “gap” feature, so that, in the semantics, the subject NP can be interpreted as the Theme of the verb.
There are many more situations in which NPs are interpreted as if they occurred in positions in which they do not overtly occur than the passive. Consider the following sentences:
i. The student preferred to sleep.
ii. The student persuaded the teacher to sleep.
iii. The student promised the teacher to sleep. iv. The student expected the teacher to sleep.
For example, in (i), the student is the Agent of preferred, as we would expect by it being the subject of preferred; but interestingly in (i), the student is also the Agent of sleep, even though it does not appear to be the subject of sleep.
In answering the three questions on the next page, assume the following:
• Persuade and expect have two thematic roles assignable: Agent and Theme. Promise
has three: Agent, Theme and Beneficiary. Sleep has one: Experiencer.
• Every subject and object must be linked to at least one thematic role. (This is the
mapping of thematic roles to grammatical functions that we saw in class.)
• Everygrammaticalfunction(e.g.,subject,object)canbelinkedwithonlyonethematic role from the same verb. This does not mean that the NPs that bear those grammat- ical functions can only bear one thematic role, because NPs can bear more than one grammatical function.
• A complement clause (i.e., an embedded verb phrase or sentence) can be assigned the Theme thematic role from its verb. In other words, NPs are not the only constituents that can be assigned thematic roles.
4

A. (5marks)Foreachofthesentences(ii)-(iv)above,foreachofthematicroleassignable by either verb in the sentence, state which constituent receives that role. Submit your answer as the file twoa.txt.
Hint: The treatment of the NP the teacher is different in each sentence.
B. (14 marks) Devise a phrase structure grammar augmented with features for the above sentences. Be sure to give the necessary lexical entries for the four verbs, preferred, persuaded, promised, and expected, as well as sleep. Submit this grammar as the file twob.pl.
Use only features that are necessary to ensure the appropriate interpretation of NPs with respect to semantic roles.
C. (1mark)Parsesentence(ii)above(Thestudentpersuadedtheteachertosleep)inALE using your grammar, and submit the resulting parse tree. There should be only one tree generated. This output should be submitted as the file twoc.prs.
Implementation details
In order for the grader to be able to semi-automatically test your work, each file must have the exact name and format specified in the following subsections.
Some overall specifications for your files:
• The first line of each file must be a comment (with %) with your name, login ID, and student ID.
• Each grammar rule, lexical entry, or sentence must be separated by one or more blank lines in its appropriate file.
• Youshouldorganizeandusecommentstoremarkuponhowyourgrammarandlexicon function, just as you would programming language code, to make it easily understand- able.
• Unlike the standard convention for specifying context-free grammars, the ALE system requires lexical entries to provide the grammatical description on the right-hand side and the word on the left-hand side, e.g., john —> np. Do not capitalize non- terminals or proper names like John, as capitalized tokens are interpreted as variables by Prolog. ALE also does not allow the use of the pipe (|) for disjunction on either side. Use a separate lexical entry for each word that you wish to assign a feature structure to.
• In your grammar source code files, the grammar rules should all come first, followed by the lexical entries, in alphabetical order of the words.
5

Test sentences
Name of the file: sentences.pl
An example:
% Your name, login ID and student ID go here.
test_sent([nadia,won,an,elephant]).
test_sent([i,could,have,demanded,a,rutabaga]).
test_sent([autopoiesis,always,reminded,her,of],fails).
Note: Use this file to provide extra sentences not mentioned in this assignment handout that you may have tried during development. The sentences must be delimited by commas, and no words should be capitalized. If a test sentence is supposed to fail, give test_sent an extra argument that tells us this.
0.0.1 Output parse trees
Your output parse trees should be generated by the code that we provide you. All your output should be directed to files with the extension .prs. All of these files should have your name, ID, and student number as the first line. Do not add any lines to the output you generate except commented lines (again with %).
0.1 What to submit
0.1.1 On paper
Staple together (no paper clips or folded corners, please) the following items in the following order:
• The project cover sheet (attached to the back of this handout).
• A written report describing the design of your grammars and lexica, and your ap- proach (how you met the requirements stated above). Don’t forget also to discuss the limitations of your grammars.
• A written report on your testing strategy—in particular, why you chose the sentences that you used for testing the grammar and lexicon. This should be no more than one page.
• Printouts of the .prs files that you generate.
• Printouts of your grammar source code.
Note: You do not need to submit other code that you write, e.g., code for running your test sentences, calling the pretty-printer, etc.
6

0.1.2 Electronically
In addition to your paper submission, you must submit your grammars, parse trees and test sentences electronically. Submit all required files using the submit command on teach.cs:
% submit -c -a A2
where is either csc485h or csc2501h, and to are the n files you are submitting. Make sure every file you turn in contains a comment at
the top that gives your name, your login ID on teach.cs, and your student ID number.
Grading scheme
We will test your grammars on the examples in this handout as well as on some held-out test sentences (i.e., sentences that you haven’t seen).
Both grammars in a part B will be marked as to style and commenting (1/7), simplicity of your feature geometry and type system (2/7), in addition to correctness (4/7). The grammar in 1A will be marked as to style (1 mark) and simplicity (1 mark).
7

CSC 2501 / 485, Fall 2016: Assignment 2 Family name: First name:
Staple to assignment this side up

CSC 2501 / 485, Fall 2016: Assignment 2
Family name: First name: Student #: Date:
I declare that this assignment, both my paper and electronic submissions, is my own work, and is in accordance with the University of Toronto Code of Behaviour on Academic Matters and the Code of Student Conduct.
Signature:
Grade:
1. / 10
2. / 20
TOTAL / 30