CALICO Journal, Volume 9 Number 1 9

Size: px
Start display at page:

Download "CALICO Journal, Volume 9 Number 1 9"

Transcription

1 PARSING, ERROR DIAGNOSTICS AND INSTRUCTION IN A FRENCH TUTOR GILLES LABRIE AND L.P.S. SINGH Abstract: This paper describes the strategy used in Miniprof, a program designed to provide "intelligent' instruction on elementary topics in French. In case of an erroneous response from a student, the program engages him/her in a Socratic dialogue. It asks specific questions about the sentence involved, thereby leading the student to identify each mistake and its correction. The systematic error detection and subsequent human-like instruction specific to the student's response is achieved by using three major functions: parsing, error diagnostics, and tutoring. The design of the system and the issues involved are discussed. Keywords: intelligent tutors, parsing, syntax, computer-assisted language instruction. Introduction The goals and potential benefits of intelligent computer assisted instruction in general, and of intelligent computer assisted language instruction in particular, are by now well recognized (see, for example, Kearsley, 1987; Polson and Richardson, 1988; Psotka et al., 1988; Wenger, 1987). Some language programs incorporating a variety of techniques and teaching strategies are already in use (see, for example, Bailin and Levin, 1989; Bailin and Thomson, 1988). Miniprof, an intelligent tutor for elementary topics in French, is being developed at Central Michigan University. The program, comprising four modules at present, is written in C for IBM personal computers. In the course of developing these modules, we experimented with different teaching strategies and system designs to deal with student errors. In two of the modules the error analysis, although quite good, was performed in an ad hoc manner and was not sufficiently systematic to be easily generalized. Adding new modules and enhancing the error analysis required considerable effort. CALICO Journal, Volume 9 Number 1 9

2 In the other two modules a system emerged which provides detailed tutoring-the kind a student gets from an instructor. When an error occurs in the student's answer to a question, the student is engaged in a dialogue specific to the error, using material from the sentence on which the student is working. This article describes the error diagnostics and subsequent instruction that leads to this teacher-like behavior. I. The Language Modules The modules described here are intended to teach students how to replace subjects with pronouns and how to give negative answers to questions. In the first module, the student is asked a question and instructed to use a subject-pronoun in the response, and in the second module, which extends the first, to respond in the negative and make the appropriate subjectpronoun substitution. In case of errors, the student is engaged in a dialogue leading to the identification of the mistakes and their correction. Figures 1 and 2 give examples of this interaction. #1 Est-ce que tu gagnes beaucoup? *Non, tu gagnes beaucoup. The question uses the pronoun "tu". Which pronoun should you use in your answer? *? Use "je". You need to answer in the negative. Use the negative in the next sentence. Answer: Non, je ne gagne pas beaucoup. #2 Est-ce que tu parles espagnol? *Non, je ne parles espagnol. The subject is "je". "parl" is correct. What should the ending be? *e Right. Your answer is negative. What do you need after the verb? *I don't know. Use "pas". Answer: Non, je ne parle pas espagnol. Figure 1. Examples #1 and #2 CALICO Journal, Volume 9 Number 1 10

3 Although the exercises are simple, the objective is to imitate the behavior of an experienced instructor. To this end, the instruction is focused on the specific error, and the instructional messages use material from the sentence in question. II. Overview of the design The two modules are based on a common internal strategy which incorporates three major components: parsing, diagnosis and tutoring. As outlined in Figure 3, the parsing and diagnosis functions analyze the student's response and record errors by setting a flag for each error uncovered. The syntax errors those at the sentence level are detected by the parser as described in section #3 Est-ce que Mike étudie beaucoup? *Non, Mike ne étudie pas beaucoup. You need to substitute a pronoun for "Mike". Which pronoun should you use? *il That's right What do you use instead of "ne" if a vowel or mute 'h' follows? *n' Right. Answer: Non, il n'étudie pas beaucoup. #4 Est-ce que vous mangez beaucoup? *Non, nous ne mangons pas beaucoup. What do you need between a 'g' and a verb ending starting with 'a' or 'o'? *? Use "e". Answer: Non, nous ne mangeons pas beaucoup. Figure 2. Examples #3 and #4 CALICO Journal, Volume 9 Number 1 11

4 III. For example, in sentence #3 of Figure 2, the parser determines that "n'" must be used instead of "ne" because the next word begins with a vowel. In sentence #4, because the root of the verb ends in "g" and is followed by "o", the parser detects that an "e" must be inserted. The other type of error involves the context and the nature of the exercise. Errors of this type are detected by the diagnostic component. This component compares the student's answer to the parse of both the question and the correct answer. In sentence #3 of Figure 2, it is the diagnostic component that determines that a pronoun has not been substituted for the noun as required by the exercise and that the correct pronoun to replace "Mike" is the 3rd person masculine singular pronoun "il". The diagnostic component also detects the errors in sentence #1 of Figure 1, where the response to a question with "tu" must be "je" and the exercise requires that the response be negative. Instruction is handled by the tutoring component which engages the student in a dialogue by asking specific question about he incorrectly answered exercise items. CALICO Journal, Volume 9 Number 1 12

5 III. The Components of the System A. Parsing Parsing offers the most effective way of specifying and checking the syntax in exercises. The parser relies on a grammar and a lexicon to perform its task. Let us look at each in turn. Sentence Grammar Our parser uses a context-free grammar augmented with the kind of constraints (for example, subject-verb agreement) found in definite clause grammars (Pereira & Shieber, 1987). A contextfree grammar (Allen 1987, Winograd 1983, Sanders & Sanders, 1989) is a set of rules defining the grammatical sentences in a language. These rules are written using non-terminals (phrase and clause categories) and terminals (words of the language). A word matches a terminal if it has the same part of speech. The words used in the exercises about 100 in all stored in the lexicon along with their attributes (part of speech, number, gender, etc.). Each rule defines the structure of a non-terminal as a combination of terminals and non-terminals. Figure 4 lists the grammar for the exercises handled by our modules. The terminals are in italics. The first three rules define the grammatical sentences in a small subset of elementary French. The first rule expresses the fact that a grammatical sentence in the grammar can consist of a terminal followed by a set of non-terminals. In this case, the terminal is called 'question', which we use to represent "est-ce que" in the lexicon. The non-terminals are 'np' (noun-phrase) and 'vp' (verb-phrase). These are defined by other rules in the grammar. There are, for example, a number of rules which can define 'np', any one of which will produce a grammatical sentence. For example, the rule np(g,n,p) --> pronoun (G,N,P) means that an 'np' can be a pronoun. In a similar manner, other rules indicate that an 'np' can also be a proper noun or an article followed by a noun. The braces immediately following a rule indicate the additional constraints that also apply to the rule. The first rule in the grammar has the constraint {N 1 =N 2,P 1 =P 2 } which stipulates that the 'np' and the 'vp' must agree in number (N 1 =N 2 ) and person (P 1 =P 2 ). A similar constraint exists in the rule npl(g,n,p)--> det(g 1,N 1,P), n(g 2,N 2,P) {G 1 =G 2, N 1 =N 2 } where the determiner and the noun must be of the same number and gender. CALICO Journal, Volume 9 Number 1 13

6 Figure 4. The Grammar s--> question, np(g,n,p), vp(n 2,P 2 ) {N 1 =N 2,P 1 =P 2 } s--> adverb, np(g,n 1,P 1 ), vp(n 2,P 2 ) {N 1 =N 2,P 1 =P 2 } s--> np(g,n 1,P 1 ), vp(n 2,p 2 ) {N 1 =N 2,P 1 =P 2 } np(g,n,p)--> pronoun(g,n,p) np(g,plural,p)--> npl(g,n,p), conj, npl(g,n,p) np(g,n,p)--> npl(g,n,p) npl(g,n,p)--> proper-noun(g,n,p) npl(g,n,p)--> det (G 1,N 1,P), n(g 2,N 2,P) {G 1 =G 2,N 1 =N 2 } vp(n,p)--> v(n,p), complements vp(n,p)--> v(n,p)(vowel Rule), v(n,p), neg2, complements complements--> prep, proper_noun complements--> int, adv complements--> adv complements--> n In the rule vp(n,p)--> neg1(vowel Rule), vp(n,p), neg2, complements, 'Vowel Rule' refers to the use of 'n' or 'ne' before the verb. 'N' is used if the verb begins with a vowel or a mute 'h' and 'ne' in the other cases. The Lexicon The lexicon contains the list of words used in the exercises along with grammatical information about them. Each word is stored using five slots. The first two slots contain the word and its part of speech. The remaining three slots contain the gender, number and person, when applicable. The pronoun 'il' and the proper nom 'Jean-Pierre' for example, are listed as follows: il", pronoun, MASC, SING, 3, Jean-Pierre", proper-noun, MASC, SING, 3. CALICO Journal, Volume 9 Number 1 14

7 Verbs are listed differently. At present we only deal with verbs that do not involve stem changes. The lexicon only contains the root of the verb; for example, there is an entry "parl", verb,-,-,-. There is also a separate dictionary of verb endings which lists each possible ending along with the corresponding number and person, as shown below: e", SING, 1,-,-, "es", SING, 2,-,-, e", SING, 3,-,-, eons", PLUR, 1, G,-, ons, PLUR, 1,-,-, ez", PLUR, 2,-,-, "ent", PLUR, 3,-,-, As we expand the lessons, the lexicon will have to contain additional information. The information on a verb, for example, will specify the past participle, the auxiliary it uses in compound tenses, and the kinds of complements it allows (a direct -object, an indirect object, an infinitive preceded by a preposition). The Parser The parser uses the grammar to assign a grammatical structure to the question and the student's actual response. If the student's answer is not a valid sentence, it tries to parse as much of the sentence as possible and identify the errors. Let us look at an example of how the parser works. Suppose the sentence is "Elle ne parle pas beaucoup. " The parser is a top-down parser it starts from the rules defining a sentence, namely 1. s-- > question, np(g,n1,p1), vp(n 2,P 2 ) {N 1 =N 2,P 1 =P 2 }, 2. s-- > adverb, np(g,n 1,P 1 ), vp(n 2,P 2 ) {N 1 =N 2,P 1, =P 2 }, 3. s--> np(g,n 1,P 1 ), vp(n 2,P 2 ) {N 1 =N 2,P 1 =P 2 } Rule 1 says that the sentence may start with the terminal 'question'. After consulting the lexicon which contains information on each word, the parser determines that the rule is not applicable because the first word is not a question. Nor is rule 2 applicable. The parser then applies rule 3 and tries to recognize a noun phrase and a verb phrase. A noun phrase must conform to one of the rules 4, 5 or 6. These are: CALICO Journal, Volume 9 Number 1 15

8 4. np(g,n,p)- > pronoun (G,N,P), 5. np(g,plural,p)- > np1 (G,N,P), conj, np1(g,n,p), 6. np(g,n,p)- > np1(g,n,p). Rule 4 requires the word to be a pronoun, as is the case here. Thus the parser records the fact that the noun phrase is the third person feminine singular pronoun elle. Next it tries to parse a verb phrase. Rules 9 and 10 are relevant here: 9. vp(n,p)- > v(n,p), complements, 10. vp(n,p)-- > neg1(vowel Rule), v(n,p), neg2, complements. Rule 9 requires a verb followed by a complement. The parser checks the next word ("ne") in the lexicon. It is not a verb. It therefore goes to the next possible form of a verb phrase: the leading negative, a verb, the trailing negative and complements. The "ne is recognized, as is the verb "parle " (whose person and number indeed match that of the noun phrase), as well as the trailing negative "pas". Finally, using rules 11-14, which are: 11. complements- > prep, proper_noun, 12. complements--> int, adv, 13. complements-- > adv, 14. complements-- > n, "beaucoup" is recognized as an adverb. To the extent that rule 3 for the structure of a sentence is satisfied and all the words in the sentence have been used, the parse has been successful. Each part of the sentence has been classified, and the overall structure is represented by the following tree. Sentence np vp pronoun neg1 verb neg2 adverb Elle ne parle pas beaucoup What happens if the parser encounters an incorrect student response? It attempts to assign a structure to as much of the sentence as Usable and to flag as an error the incorrect parts. The way the negative is handled illustrates the point. Negatives in French have two parts; an error cannot therefore be confirmed until the second part has been reached. If the sentence includes the first part of the negative 'ne', but pas' is missing, the parser puts out an error flag when it CALICO Journal, Volume 9 Number 1 16

9 reaches the position where 'pas' should be. If, on the other hand, 'ne' is missing, the parser continues to parse to see if there is a 'pas'; only when it finds 'pas' doe it set the error code for the 'ne'. Let us now look at a complete example of an incorrect answer. Assume that the student has responded "Il n'parlent beaucoup. " The parser starts with rules 1-3 defining a sentence and proceeds much as in the example. It chooses rule 3 for the definition, and uses rule 4 to recognize the pronoun Il" as the noun phrase. In trying to parse the verb phrase, the presence of the negative "n' " dictates rule 10. The next word, parlent, does not start with a vowel, so an error is recorded. "Parlent" is recognized as a verb, but the number (plural) of the ending does not match that of the subject ("il -singular) and another error is recorded. The next word, according to rule 10, must be the trailing negative. It is not, so yet another error is recorded. Finally, just as in the previous example, rule 13 is used to classify the adverb "beaucoup" as a valid complement. The parser bas thus built the following parse tree and signaled the appropriate errors. Sentence np vp pronoun neg1 verb -adverb il n parlent beaucoup If the student were responding to the question "Est-ce que Monique parle beaucoup", the student's response should contain the feminine singular pronoun "elle". But this is not a syntax error and cannot be detected by the parser. Such context errors are detected by the diagnostic component described in the next section. The example above illustrates a few of the errors detected by the parser. A complete list of the errors detected in the exercise on the negative appears in Figure 5. It should be noted that the parser only assigns a structure to the correct answer in an indirect manner. The parse tree of the correct answer is generated by making substitutions to the parse tree of the question. These are done using simple rules: 1. Drop the question marker and insert "non in the sentence. 2. a. If the subject is a noun, replace it with a pronoun of the same number and gender. b. If the subject is a first person pronoun, change it to second person or vice versa. 3. If the person of the pronoun has been changed, adjust the ending of the verb. In thesecondmodule, for example, the student is asked to answer questions in the negative. Assume that the question is "Est-ce que tu travailles beaucoup?". The program first removes the question marker "est-ce que" and substitutes the adverb "Non" to make the sentence negative. Then the first person pronoun je" is substituted for the second person pronoun tu", and the verb is changed to "travaille" to agree with the new subject. The exercise requires a negative answer so the two parts of the negative are added to the response. In the example, the sentence is CALICO Journal, Volume 9 Number 1 17

10 made negative by adding ne" before the verb "travaille and "pas after. Finally, the remainder of the question is copied to the response, i.e. beaucoup is copied to the end of the sentence to produce the correct response Non, je ne travaille pas beaucoup." Parsing New Material In order to make sure that new exercise set items can be handled by the parser, our program checks to make sure that the words used in the sentence are in the dictionary and that the sentence is compatible with the limited capabilities of the grammar. The entry module used to create or augment an exercise file first ensures that each word is in the dictionary. If it is not, it asks the user for the necessary information about the word (part-of-speech, gender, etc.). It then attempts to parse the sentence. If the parse fails, the sentence is clearly unsuitable; otherwise the dictionary is updated and the sentence is included in the exercise file. B. The Diagnostic Component The diagnostic component detects errors the parser cannot identify. More specifically, it recognizes context errors and exercise-related errors. Context errors are those where the student's response, although syntactically correct, is not an appropriate answer to the question (see part A of Figure 6). For instance, the pronoun substitute for the proper noun "Janine " must be " elle", the 3rd person feminine singular pronoun; a question asked with "tu", a 2nd person singular pronoun, requires "je", a 1st person singular pronoun, in the response. The diagnostic component checks the student s answer for both types of context errors. Other context errors are more subtle. Assume the student's answer is "Non, tu ne parles pas espagnol " to the question " Est-ce que tu parles espagnol? ". The correct answer is "Non, je ne parle pas espagnol." The parser will not detect an error in the student's response because it is a syntactically correct sentence. Yet, because the student bas responded with the wrong subject pronoun, an error is detected by the diagnostic component: the response is wrong in this context. The tutor later asks the student to use the right subject pronoun "je". Verb endings in French, however, are highly inflected, so a change in the subject may require a modification in the verb. Once the student bas corrected the subject pronoun, there is an error in the verb ending, which ought to be "e", not "es". The diagnostic component detects this error by matching the verb form in the student's answer with the verb in the correct answer. Unlike the errors noted above, other errors detected by the diagnostic component are exercise specific. For example, if the student does not substitute, a subject-pronoun for the noun or answer CALICO Journal, Volume 9 Number 1 18

11 Figure 5. Errors detected by the parser in the negative as required by the exercise, the diagnostic component detects the error. It does so by checking the parse tree of the student's answer to see if the response is negative and does contain a pronoun as subject. These exercise-related errors cannot be detected by the parser. The number of exercise specific errors is quite small relative to the total number of errors and we would guess that the proportion will not increase considerably. In the tutor, the exercise related errors listed in part B of Figure 6 are handled separately from the others and can be easily deactivated when not required by the exercise. The diagnostic component does its work by using the parse trees of the original question, the correct answer and the student's response. Information about the sentence and about various errors mentioned above are passed on to the tutor using a set of flags. Figure 6 contains a complete list of errors the system can diagnose. C. The Tutor The tutor is a rule-based system that asks the student questions about errors detected by the parsing and diagnostic components. It attempts to model the way in which a teacher would respond when actually tutoring a student in French. The order in which the tutor handles the errors is determined by a built in priority list. Each item on this list corresponds to a group of errors. The priority list for the exercises on the negative is shown below. CALICO Journal, Volume 9 Number 1 19

12 (1) Pronoun/Exercise: exercise type errors in the subject-pronoun, (error B.11 from Figure 6) (2) Pronoun: syntax or context errors in the subject-pronoun, (errors 1-6 from Figure 6 and 1) (3) Verb: syntax or context errors in the verb, (errors 2-8 from Figure 5 and 8 from Figure 6) (4) Negative: syntax errors in the negative, (errors 9-12 from Figure 5) (5) Negative/Exercise: exercise type errors in the negative, (en-or B. 12 from Figure 6) (6) Answer: prints the correct answer. It will be noted that errors are categorized by part of speech, and within each part of speech, the exercise-type errors are separated from the syntax and context errors. This facilitates the changes CALICO Journal, Volume 9 Number 1 20

13 needed to handle exercises of different types. Thus, the only difference between the module which requires the student to respond in the negative and the one which does not is the presence or absence of Negative/Exercise on the list. The tutor-calling routine is rather straightforward. It first checks to see if the student s answer is correct and, if it is, prints an appropriate message. If the answer is not correct, it sequentially takes each item on the priority list and calls the corresponding function. The last item on the priority list, Answer, calls a function which prints the correct answer. Each tutorial functions contain a sequence of clauses ( if statements), each related to an error. Each statement contains the actions taken by the tutor when that error occurs. If there are no errors of the type handled by the function, control returns to the main routine. The negative in French, for example, requires ne before the verb and pas after the verb. In addition, if ne is followed by a word beginning with a vowel, n is used. So, four errors are possible, three with ne and one with pas. Ne can be missing or used when the next word begins with a vowel or n used when the next word begins with a consonant, or pas can be missing. The function therefore has four if statements each related to one of these errors. The statements contain the actions taken by the tutor when the error occurs. When a function is called and an error triggers one of its clauses, the words related to the error CALICO Journal, Volume 9 Number 1 21

14 are looked up in the parse tree. The student is then asked specific questions about the error. All the functions contain similar conditions and actions for errors. Figure 7 contains a sample of the procedure for the verb-errors function. If the question to the student is Est-ce que tu voyages beaucoup? and the student has responded Non, je ne voyages pas beaucoup., the parser will signal that the verb ending is wrong and the code in Figure 7 from the tutor will be triggered. The program first traverses the parse tree of the correct answer to find the subject je and the verb of the sentence voyage. A message is then printed on the screen telling the student that the right verb has been used, but that there is a problem with the ending of the verb. The program then points out to the student that the subject is je and that the root of the verb that the student has correctly used is voyag, and asks what the right ending should be. After reading the student s answer, the program tries CALICO Journal, Volume 9 Number 1 22

15 to match it to the correct answer e. If they match, a message indicating that the student is right is printed; otherwise the student is given the correct form. Sometimes more than one question is asked of the student. A clause in the pronoun errors function shown in Figure 8 serves as an illustration. Assume the question is Est-ce que Bob et Monique parlent espagnol? and that the student has answered with Non, il ne parlent pas espagnol. This pronoun-error clause is triggered when the third person subject pronoun the student has used is of the wrong number, as in the example above. The program first finds the subject of the sentence Bob et Monique in the parse tree of the question. It then asks the student if the subject is singular or plural. IV. Conclusion The three component design (parsing, diagnostics and tutoring) allows instruction which is specific to the student s errors and models the behavior of a human instructor. The parsing and diagnostic components provide the detailed information about the syntax, context and exerciserelated errors, as well as the syntactic information contained in the parse trees which are crucial for creating the instructor-like dialogue in the tutor. Furthermore, the three part design allows the program to be modular: separate functions are identified and isolated and hence can be modified with relative ease. The design can be generalized (within the limited scope of elementary French) to other types of exercises. For each type of exercise, one has to classify the possible errors into three categories (syntactic, contextual and exercise related). These have to be grouped and the groups prioritized for tutoring. Finally, the corresponding tutoring rules have to be tailored to the errors. We need, however, to make several improvements. The grammar can be enlarged to handle a larger variety of sentences. In addition the lexicon and the verb morphology are very limited and need to be expanded. Finally, the diagnostic strategy does not handle certain errors commonly made by students, such as misspellings and misplaced words. We are developing a scheme to deal with some of these errors. Still, we have taken a modest step towards a system that would mimic human tutoring. CALICO Journal, Volume 9 Number 1 23

16 REFERENCES Allen, James Natural Language Understanding. Menlo Park, CA: Benjamin/Cummings. Bailin, Alan and Lori Levin, eds Intelligent Computer-Assisted Language Instruction. A special issue of Computers and the Humanities 23, 1, Bailin, Alan and Philip Thomson The Use of Natural Language Processing in Computer- Assisted Language Instruction. Computers and the Humanities 22, Kearsley, Greg, ed Artificial Intelligence and Instruction: Applications and Methods. Reading, MA: AddisonWesley. Pereira, Fernando C. N. and Stuart M. Shieber Prolog and Natural-Language Analysis. Stanford, CA: Center for the Study of Language and Information. Polson, Martha C. and J. Jeffrey Richardson, eds Intelligent Tutoring Systems: Lessons Learned. Hillsdale, NJ: Lawrence Erlbaum. Sanders, Alton F. and Ruth H. Sanders Syntactic Parsing: A Survey. Computers and the Humanities 23, Wenger, Etienne Artificial Intelligence and Tutoring Systems: Computational and Cognitive Approaches to the Communication of Knowledge. Los Altos, CA: Morgan Kaufmann. Winograd, Terry Language as a Cognitive Process. Vol. 1 (Syntax). Reading, MA: Addison- Wesley. AUTHORS BIODATA Gilles Labrie is an Associate Professor of French at Central Michigan University. His present research interests are in computer applications to elementary and intermediate language instruction. L.P.S. Singh is an Associate Professor of Computer Science at Central Michigan University. His research interests are in the areas of intelligent tutoring systems, parallel computing and databases. CALICO Journal, Volume 9 Number 1 24

17 AUTHORS ADDRESSES Gilles Labrie Department of Foreign Languages, Literatures and Cultures Central Michigan University Mt. Pleasant, MI Bitnet: L.P.S. Singh Department of Computer Science Central Michigan University Mt. Pleasant, MI CALICO Journal, Volume 9 Number 1 25

Ling 201 Syntax 1. Jirka Hana April 10, 2006

Ling 201 Syntax 1. Jirka Hana April 10, 2006 Overview of topics What is Syntax? Word Classes What to remember and understand: Ling 201 Syntax 1 Jirka Hana April 10, 2006 Syntax, difference between syntax and semantics, open/closed class words, all

More information

FrenchPod101.com Learn French with FREE Podcasts

FrenchPod101.com Learn French with FREE Podcasts Newbie Lesson S1 Mastering the French Kiss...AGAIN? 3 Formal French 2 Formal English 2 Informal French 2 Informal English 2 Vocabulary 2 Grammar Points 4 Cultural Insight 5 Formal French Oh Robert! Encore

More information

Learning Translation Rules from Bilingual English Filipino Corpus

Learning Translation Rules from Bilingual English Filipino Corpus Proceedings of PACLIC 19, the 19 th Asia-Pacific Conference on Language, Information and Computation. Learning Translation s from Bilingual English Filipino Corpus Michelle Wendy Tan, Raymond Joseph Ang,

More information

Une dame et un petit garçon regardent tranquillement le paysage.

Une dame et un petit garçon regardent tranquillement le paysage. > Une dame et un petit garçon regardent tranquillement le paysage. Masculine and feminine nouns How adjectives behave Verbs from the first group Verbs and prepositions French is not so very far from English.

More information

Index. 344 Grammar and Language Workbook, Grade 8

Index. 344 Grammar and Language Workbook, Grade 8 Index Index 343 Index A A, an (usage), 8, 123 A, an, the (articles), 8, 123 diagraming, 205 Abbreviations, correct use of, 18 19, 273 Abstract nouns, defined, 4, 63 Accept, except, 12, 227 Action verbs,

More information

Points of Interference in Learning English as a Second Language

Points of Interference in Learning English as a Second Language Points of Interference in Learning English as a Second Language Tone Spanish: In both English and Spanish there are four tone levels, but Spanish speaker use only the three lower pitch tones, except when

More information

GRAMMAR, SYNTAX, AND ENGLISH LANGUAGE LEARNERS

GRAMMAR, SYNTAX, AND ENGLISH LANGUAGE LEARNERS GRAMMAR, SYNTAX, AND ENGLISH LANGUAGE LEARNERS When it comes to grammar, many writing tutors and instructors are unsure of the most effective way to teach ESL students. And while numerous studies, articles

More information

SPANISH Kindergarten

SPANISH Kindergarten SPANISH Kindergarten Use Junior SYMTALK workbook Recognize 80+ Vocabulary words Recognize basic greetings and courtesies. Identify colors and numbers 1-10 Develop reading skills using pictures to identify

More information

What about me and you? We can also be objects, and here it gets really easy,

What about me and you? We can also be objects, and here it gets really easy, YOU MEAN I HAVE TO KNOW THIS!? VOL 3 PRONOUNS Object pronouns Object pronouns If subjects do the verb, guess what the objects do? They get the verb done to them! Consider the following sentences: We eat

More information

Online Tutoring System For Essay Writing

Online Tutoring System For Essay Writing Online Tutoring System For Essay Writing 2 Online Tutoring System for Essay Writing Unit 4 Infinitive Phrases Review Units 1 and 2 introduced some of the building blocks of sentences, including noun phrases

More information

stress, intonation and pauses and pronounce English sounds correctly. (b) To speak accurately to the listener(s) about one s thoughts and feelings,

stress, intonation and pauses and pronounce English sounds correctly. (b) To speak accurately to the listener(s) about one s thoughts and feelings, Section 9 Foreign Languages I. OVERALL OBJECTIVE To develop students basic communication abilities such as listening, speaking, reading and writing, deepening their understanding of language and culture

More information

Correlation: ELLIS. English language Learning and Instruction System. and the TOEFL. Test Of English as a Foreign Language

Correlation: ELLIS. English language Learning and Instruction System. and the TOEFL. Test Of English as a Foreign Language Correlation: English language Learning and Instruction System and the TOEFL Test Of English as a Foreign Language Structure (Grammar) A major aspect of the ability to succeed on the TOEFL examination is

More information

10th Grade Language. Goal ISAT% Objective Description (with content limits) Vocabulary Words

10th Grade Language. Goal ISAT% Objective Description (with content limits) Vocabulary Words Standard 3: Writing Process 3.1: Prewrite 58-69% 10.LA.3.1.2 Generate a main idea or thesis appropriate to a type of writing. (753.02.b) Items may include a specified purpose, audience, and writing outline.

More information

EAP 1161 1660 Grammar Competencies Levels 1 6

EAP 1161 1660 Grammar Competencies Levels 1 6 EAP 1161 1660 Grammar Competencies Levels 1 6 Grammar Committee Representatives: Marcia Captan, Maria Fallon, Ira Fernandez, Myra Redman, Geraldine Walker Developmental Editor: Cynthia M. Schuemann Approved:

More information

Rhode Island College

Rhode Island College Rhode Island College M.Ed. In TESL Program Language Group Specific Informational Reports Produced by Graduate Students in the M.Ed. In TESL Program In the Feinstein School of Education and Human Development

More information

COURSE OBJECTIVES SPAN 100/101 ELEMENTARY SPANISH LISTENING. SPEAKING/FUNCTIONAl KNOWLEDGE

COURSE OBJECTIVES SPAN 100/101 ELEMENTARY SPANISH LISTENING. SPEAKING/FUNCTIONAl KNOWLEDGE SPAN 100/101 ELEMENTARY SPANISH COURSE OBJECTIVES This Spanish course pays equal attention to developing all four language skills (listening, speaking, reading, and writing), with a special emphasis on

More information

Module 9. Lesson 9:00 La Culture. Le Minitel. Can you guess what these words mean? surfer le net. chatter. envoyer un mail. télécharger.

Module 9. Lesson 9:00 La Culture. Le Minitel. Can you guess what these words mean? surfer le net. chatter. envoyer un mail. télécharger. Module 9 Lesson 9:00 La Culture Le Minitel The Minitel was a machine used so people could access: Can you guess what these words mean? surfer le net chatter envoyer un mail télécharger être en ligne les

More information

Year 7. Home Learning Booklet. French and German Skills

Year 7. Home Learning Booklet. French and German Skills Year 7 Home Learning Booklet French and German Skills Name: Tutor Group: Teacher: Given out: 1 st July Hand in: 8 th July Parent/Carer Comment: Staff Comment: Target: This homework booklet practises some

More information

English Language Proficiency Standards: At A Glance February 19, 2014

English Language Proficiency Standards: At A Glance February 19, 2014 English Language Proficiency Standards: At A Glance February 19, 2014 These English Language Proficiency (ELP) Standards were collaboratively developed with CCSSO, West Ed, Stanford University Understanding

More information

INDIRECT OBJECT PRONOUN. Nineteenth lesson Dix-neuvième leçon

INDIRECT OBJECT PRONOUN. Nineteenth lesson Dix-neuvième leçon INDIRECT OBJECT PRONOUN Nineteenth lesson Dix-neuvième leçon CONTENTS Introduction 1. Forms 2. Position 1.1. When preceding a vowel 1.2. In the imperative 2.1. In the present tense 2.2 In the past tense

More information

Syntax: Phrases. 1. The phrase

Syntax: Phrases. 1. The phrase Syntax: Phrases Sentences can be divided into phrases. A phrase is a group of words forming a unit and united around a head, the most important part of the phrase. The head can be a noun NP, a verb VP,

More information

AP FRENCH LANGUAGE 2008 SCORING GUIDELINES

AP FRENCH LANGUAGE 2008 SCORING GUIDELINES AP FRENCH LANGUAGE 2008 SCORING GUIDELINES Part A (Essay): Question 31 9 Demonstrates STRONG CONTROL Excellence Ease of expression marked by a good sense of idiomatic French. Clarity of organization. Accuracy

More information

FRENCH AS A SECOND LANGUAGE TRAINING

FRENCH AS A SECOND LANGUAGE TRAINING FRENCH AS A SECOND LANGUAGE TRAINING Beginner 1 This course is intended for people who have never studied French or people who have taken French in the past but have either forgotten most of it or have

More information

Grammar notes English translation Not done in class (to be done later)

Grammar notes English translation Not done in class (to be done later) FREE FRENCH CLASSES AT THE FRENCH CHURCH DU SAINT-ESPRIT - NYC FAUX BEGINNER WITH FRÉDÉRIC - 9AM BOOK: LIVING LANGUAGE - ULTIMATE FRENCH (BEGINNER - INTERMEDIATE) 09/21/14 Grammar notes English translation

More information

GMAT.cz www.gmat.cz info@gmat.cz. GMAT.cz KET (Key English Test) Preparating Course Syllabus

GMAT.cz www.gmat.cz info@gmat.cz. GMAT.cz KET (Key English Test) Preparating Course Syllabus Lesson Overview of Lesson Plan Numbers 1&2 Introduction to Cambridge KET Handing Over of GMAT.cz KET General Preparation Package Introduce Methodology for Vocabulary Log Introduce Methodology for Grammar

More information

12 FIRST QUARTER. Class Assignments

12 FIRST QUARTER. Class Assignments August 7- Go over senior dates. Go over school rules. 12 FIRST QUARTER Class Assignments August 8- Overview of the course. Go over class syllabus. Handout textbooks. August 11- Part 2 Chapter 1 Parts of

More information

How To Understand A Sentence In A Syntactic Analysis

How To Understand A Sentence In A Syntactic Analysis AN AUGMENTED STATE TRANSITION NETWORK ANALYSIS PROCEDURE Daniel G. Bobrow Bolt, Beranek and Newman, Inc. Cambridge, Massachusetts Bruce Eraser Language Research Foundation Cambridge, Massachusetts Summary

More information

Constraints in Phrase Structure Grammar

Constraints in Phrase Structure Grammar Constraints in Phrase Structure Grammar Phrase Structure Grammar no movement, no transformations, context-free rules X/Y = X is a category which dominates a missing category Y Let G be the set of basic

More information

FrenchPod101.com Learn French with FREE Podcasts

FrenchPod101.com Learn French with FREE Podcasts Pod101.com Learn with FREE Podcasts Absolute Beginner S1 Easy Self-Introductions in 1 Formal 2 English 2 Vocabulary 2 Grammar Points 3 Cultural Insight 8 Pod101.com Learn with FREE Podcasts Rob Bonjour.

More information

SYNTAX: THE ANALYSIS OF SENTENCE STRUCTURE

SYNTAX: THE ANALYSIS OF SENTENCE STRUCTURE SYNTAX: THE ANALYSIS OF SENTENCE STRUCTURE OBJECTIVES the game is to say something new with old words RALPH WALDO EMERSON, Journals (1849) In this chapter, you will learn: how we categorize words how words

More information

Artificial Intelligence Exam DT2001 / DT2006 Ordinarie tentamen

Artificial Intelligence Exam DT2001 / DT2006 Ordinarie tentamen Artificial Intelligence Exam DT2001 / DT2006 Ordinarie tentamen Date: 2010-01-11 Time: 08:15-11:15 Teacher: Mathias Broxvall Phone: 301438 Aids: Calculator and/or a Swedish-English dictionary Points: The

More information

The Book of Grammar Lesson Six. Mr. McBride AP Language and Composition

The Book of Grammar Lesson Six. Mr. McBride AP Language and Composition The Book of Grammar Lesson Six Mr. McBride AP Language and Composition Table of Contents Lesson One: Prepositions and Prepositional Phrases Lesson Two: The Function of Nouns in a Sentence Lesson Three:

More information

Les Métiers (Jobs and Professions)

Les Métiers (Jobs and Professions) Purpose and requirements: The main themes of the lesson are jobs and professions. Here, students are encouraged to talk and interact verbally since most of the lesson does not require any writing. It introduces

More information

COURSE SYLLABUS ESU 561 ASPECTS OF THE ENGLISH LANGUAGE. Fall 2014

COURSE SYLLABUS ESU 561 ASPECTS OF THE ENGLISH LANGUAGE. Fall 2014 COURSE SYLLABUS ESU 561 ASPECTS OF THE ENGLISH LANGUAGE Fall 2014 EDU 561 (85515) Instructor: Bart Weyand Classroom: Online TEL: (207) 985-7140 E-Mail: weyand@maine.edu COURSE DESCRIPTION: This is a practical

More information

Livingston Public Schools Scope and Sequence K 6 Grammar and Mechanics

Livingston Public Schools Scope and Sequence K 6 Grammar and Mechanics Grade and Unit Timeframe Grammar Mechanics K Unit 1 6 weeks Oral grammar naming words K Unit 2 6 weeks Oral grammar Capitalization of a Name action words K Unit 3 6 weeks Oral grammar sentences Sentence

More information

Written Language Curriculum Planning Manual 3LIT3390

Written Language Curriculum Planning Manual 3LIT3390 Written Language Curriculum Planning Manual 3LIT3390 TABLE OF CONTENTS Language Usage Curriculum... 1 Language Usage I... 2 Language Usage II... 4 Language Usage III... 6 Language Usage IV... 8 Language

More information

French Curriculum Grades 4-8

French Curriculum Grades 4-8 French Curriculum Grades 4-8 French Grade Four: 1. Students will be introduced, recognize, and recite the French alphabet. 2. Students will recognize, recite and respond to simple French greetings. 3.

More information

UNIT ONE A WORLD OF WONDERS

UNIT ONE A WORLD OF WONDERS UNIT ONE A WORLD OF WONDERS COMPETENCIES AND PERFORMANCE INDICATORS COMPETENCIAS E INDICADORES DE DESEMPEÑO Passive voice Future Active voice Passive voice Passive voice Use of Passive Passive voice is

More information

A Knowledge-based System for Translating FOL Formulas into NL Sentences

A Knowledge-based System for Translating FOL Formulas into NL Sentences A Knowledge-based System for Translating FOL Formulas into NL Sentences Aikaterini Mpagouli, Ioannis Hatzilygeroudis University of Patras, School of Engineering Department of Computer Engineering & Informatics,

More information

Lecture 9. Phrases: Subject/Predicate. English 3318: Studies in English Grammar. Dr. Svetlana Nuernberg

Lecture 9. Phrases: Subject/Predicate. English 3318: Studies in English Grammar. Dr. Svetlana Nuernberg Lecture 9 English 3318: Studies in English Grammar Phrases: Subject/Predicate Dr. Svetlana Nuernberg Objectives Identify and diagram the most important constituents of sentences Noun phrases Verb phrases

More information

LESSON THIRTEEN STRUCTURAL AMBIGUITY. Structural ambiguity is also referred to as syntactic ambiguity or grammatical ambiguity.

LESSON THIRTEEN STRUCTURAL AMBIGUITY. Structural ambiguity is also referred to as syntactic ambiguity or grammatical ambiguity. LESSON THIRTEEN STRUCTURAL AMBIGUITY Structural ambiguity is also referred to as syntactic ambiguity or grammatical ambiguity. Structural or syntactic ambiguity, occurs when a phrase, clause or sentence

More information

Albert Pye and Ravensmere Schools Grammar Curriculum

Albert Pye and Ravensmere Schools Grammar Curriculum Albert Pye and Ravensmere Schools Grammar Curriculum Introduction The aim of our schools own grammar curriculum is to ensure that all relevant grammar content is introduced within the primary years in

More information

Name: Note that the TEAS 2009 score report for reading has the following subscales:

Name: Note that the TEAS 2009 score report for reading has the following subscales: Name: Writing, Reading, and Language Center Software Activities Relevant for TEAS Reading Preparation The WRLC is located in room MT-020, below the library. These activities correspond roughly to TEAS

More information

Natural Language Database Interface for the Community Based Monitoring System *

Natural Language Database Interface for the Community Based Monitoring System * Natural Language Database Interface for the Community Based Monitoring System * Krissanne Kaye Garcia, Ma. Angelica Lumain, Jose Antonio Wong, Jhovee Gerard Yap, Charibeth Cheng De La Salle University

More information

ESL 005 Advanced Grammar and Paragraph Writing

ESL 005 Advanced Grammar and Paragraph Writing ESL 005 Advanced Grammar and Paragraph Writing Professor, Julie Craven M/Th: 7:30-11:15 Phone: (760) 355-5750 Units 5 Email: julie.craven@imperial.edu Code: 30023 Office: 2786 Room: 201 Course Description:

More information

Comprendium Translator System Overview

Comprendium Translator System Overview Comprendium System Overview May 2004 Table of Contents 1. INTRODUCTION...3 2. WHAT IS MACHINE TRANSLATION?...3 3. THE COMPRENDIUM MACHINE TRANSLATION TECHNOLOGY...4 3.1 THE BEST MT TECHNOLOGY IN THE MARKET...4

More information

English Appendix 2: Vocabulary, grammar and punctuation

English Appendix 2: Vocabulary, grammar and punctuation English Appendix 2: Vocabulary, grammar and punctuation The grammar of our first language is learnt naturally and implicitly through interactions with other speakers and from reading. Explicit knowledge

More information

A Machine Translation System Between a Pair of Closely Related Languages

A Machine Translation System Between a Pair of Closely Related Languages A Machine Translation System Between a Pair of Closely Related Languages Kemal Altintas 1,3 1 Dept. of Computer Engineering Bilkent University Ankara, Turkey email:kemal@ics.uci.edu Abstract Machine translation

More information

Measuring Language Development in Early Childhood Education: A Case Study of Grammar Checking in Child Language Transcripts

Measuring Language Development in Early Childhood Education: A Case Study of Grammar Checking in Child Language Transcripts Measuring Language Development in Early Childhood Education: A Case Study of Grammar Checking in Child Language Transcripts Khairun-nisa Hassanali Computer Science Department The University of Texas at

More information

How the Computer Translates. Svetlana Sokolova President and CEO of PROMT, PhD.

How the Computer Translates. Svetlana Sokolova President and CEO of PROMT, PhD. Svetlana Sokolova President and CEO of PROMT, PhD. How the Computer Translates Machine translation is a special field of computer application where almost everyone believes that he/she is a specialist.

More information

English. Universidad Virtual. Curso de sensibilización a la PAEP (Prueba de Admisión a Estudios de Posgrado) Parts of Speech. Nouns.

English. Universidad Virtual. Curso de sensibilización a la PAEP (Prueba de Admisión a Estudios de Posgrado) Parts of Speech. Nouns. English Parts of speech Parts of Speech There are eight parts of speech. Here are some of their highlights. Nouns Pronouns Adjectives Articles Verbs Adverbs Prepositions Conjunctions Click on any of the

More information

Listening Student Learning Outcomes

Listening Student Learning Outcomes Listening Student Learning Outcomes Goals for Learning Has sufficient vocabulary to comprehend an unsimplified academic lecture Can paraphrase academic discourse effectively in writing and discussion from

More information

A Writer s Reference, Seventh Edition Diana Hacker Nancy Sommers

A Writer s Reference, Seventh Edition Diana Hacker Nancy Sommers A Writer s Reference, Seventh Edition Diana Hacker Nancy Sommers What s new on the companion Web site? hackerhandbooks.com/writersref The companion Web site for A Writer s Reference, Seventh Edition, now

More information

National Quali cations SPECIMEN ONLY

National Quali cations SPECIMEN ONLY N5 SQ40/N5/02 FOR OFFICIAL USE National Quali cations SPECIMEN ONLY Mark Urdu Writing Date Not applicable Duration 1 hour and 30 minutes *SQ40N502* Fill in these boxes and read what is printed below. Full

More information

Quality Assurance at NEMT, Inc.

Quality Assurance at NEMT, Inc. Quality Assurance at NEMT, Inc. Quality Assurance Policy NEMT prides itself on the excellence of quality within every level of the company. We strongly believe in the benefits of continued education and

More information

One Ring to rule them all, One Ring to find them One Ring to bring them all, and in the darkness bind them In the Land of Mordor where shadows lie

One Ring to rule them all, One Ring to find them One Ring to bring them all, and in the darkness bind them In the Land of Mordor where shadows lie One Ring to rule them all, One Ring to find them One Ring to bring them all, and in the darkness bind them In the Land of Mordor where shadows lie OR, THE RING POEM IN OLD CHURCH SLAVIC by Jussi Halla-aho

More information

Useful classroom language for Elementary students. (Fluorescent) light

Useful classroom language for Elementary students. (Fluorescent) light Useful classroom language for Elementary students Classroom objects it is useful to know the words for Stationery Board pens (= board markers) Rubber (= eraser) Automatic pencil Lever arch file Sellotape

More information

English Grammar Checker

English Grammar Checker International l Journal of Computer Sciences and Engineering Open Access Review Paper Volume-4, Issue-3 E-ISSN: 2347-2693 English Grammar Checker Pratik Ghosalkar 1*, Sarvesh Malagi 2, Vatsal Nagda 3,

More information

PTE Academic Preparation Course Outline

PTE Academic Preparation Course Outline PTE Academic Preparation Course Outline August 2011 V2 Pearson Education Ltd 2011. No part of this publication may be reproduced without the prior permission of Pearson Education Ltd. Introduction The

More information

L130: Chapter 5d. Dr. Shannon Bischoff. Dr. Shannon Bischoff () L130: Chapter 5d 1 / 25

L130: Chapter 5d. Dr. Shannon Bischoff. Dr. Shannon Bischoff () L130: Chapter 5d 1 / 25 L130: Chapter 5d Dr. Shannon Bischoff Dr. Shannon Bischoff () L130: Chapter 5d 1 / 25 Outline 1 Syntax 2 Clauses 3 Constituents Dr. Shannon Bischoff () L130: Chapter 5d 2 / 25 Outline Last time... Verbs...

More information

Lesson 7. Les Directions (Disc 1 Track 12) The word crayons is similar in English and in French. Oui, mais où sont mes crayons?

Lesson 7. Les Directions (Disc 1 Track 12) The word crayons is similar in English and in French. Oui, mais où sont mes crayons? Lesson 7 Les Directions (Disc 1 Track 12) Listen to the audio and follow along. Où sont mes crayons? Where are your crayons? Yes, where are my crayons? The word crayons is similar in English and in French.

More information

Statistical Machine Translation

Statistical Machine Translation Statistical Machine Translation Some of the content of this lecture is taken from previous lectures and presentations given by Philipp Koehn and Andy Way. Dr. Jennifer Foster National Centre for Language

More information

Quality Assurance at NEMT, Inc.

Quality Assurance at NEMT, Inc. Quality Assurance at NEMT, Inc. Quality Assurance Policy NEMT prides itself on the excellence of quality within every level of the company. We strongly believe in the benefits of continued education and

More information

Writing Common Core KEY WORDS

Writing Common Core KEY WORDS Writing Common Core KEY WORDS An educator's guide to words frequently used in the Common Core State Standards, organized by grade level in order to show the progression of writing Common Core vocabulary

More information

AP FRENCH LANGUAGE AND CULTURE 2013 SCORING GUIDELINES

AP FRENCH LANGUAGE AND CULTURE 2013 SCORING GUIDELINES AP FRENCH LANGUAGE AND CULTURE 2013 SCORING GUIDELINES Interpersonal Writing: E-mail Reply 5: STRONG performance in Interpersonal Writing Maintains the exchange with a response that is clearly appropriate

More information

NATURAL LANGUAGE QUERY PROCESSING USING PROBABILISTIC CONTEXT FREE GRAMMAR

NATURAL LANGUAGE QUERY PROCESSING USING PROBABILISTIC CONTEXT FREE GRAMMAR NATURAL LANGUAGE QUERY PROCESSING USING PROBABILISTIC CONTEXT FREE GRAMMAR Arati K. Deshpande 1 and Prakash. R. Devale 2 1 Student and 2 Professor & Head, Department of Information Technology, Bharati

More information

How To Translate English To Yoruba Language To Yoranuva

How To Translate English To Yoruba Language To Yoranuva International Journal of Language and Linguistics 2015; 3(3): 154-159 Published online May 11, 2015 (http://www.sciencepublishinggroup.com/j/ijll) doi: 10.11648/j.ijll.20150303.17 ISSN: 2330-0205 (Print);

More information

MESLEKİ İNGİLİZCE I / VOCATIONAL ENGLISH I

MESLEKİ İNGİLİZCE I / VOCATIONAL ENGLISH I MESLEKİ İNGİLİZCE I / VOCATIONAL ENGLISH I VOCATIONAL ENGLISH I / 2 credits 3 rd * Reviewing Basic English Grammar (word order, nouns, adjectives, pronouns, verbs, prepositions etc.) * Learning common

More information

MODERN WRITTEN ARABIC. Volume I. Hosted for free on livelingua.com

MODERN WRITTEN ARABIC. Volume I. Hosted for free on livelingua.com MODERN WRITTEN ARABIC Volume I Hosted for free on livelingua.com TABLE OF CcmmTs PREFACE. Page iii INTRODUCTICN vi Lesson 1 1 2.6 3 14 4 5 6 22 30.45 7 55 8 61 9 69 10 11 12 13 96 107 118 14 134 15 16

More information

CHARTES D'ANGLAIS SOMMAIRE. CHARTE NIVEAU A1 Pages 2-4. CHARTE NIVEAU A2 Pages 5-7. CHARTE NIVEAU B1 Pages 8-10. CHARTE NIVEAU B2 Pages 11-14

CHARTES D'ANGLAIS SOMMAIRE. CHARTE NIVEAU A1 Pages 2-4. CHARTE NIVEAU A2 Pages 5-7. CHARTE NIVEAU B1 Pages 8-10. CHARTE NIVEAU B2 Pages 11-14 CHARTES D'ANGLAIS SOMMAIRE CHARTE NIVEAU A1 Pages 2-4 CHARTE NIVEAU A2 Pages 5-7 CHARTE NIVEAU B1 Pages 8-10 CHARTE NIVEAU B2 Pages 11-14 CHARTE NIVEAU C1 Pages 15-17 MAJ, le 11 juin 2014 A1 Skills-based

More information

Presented to The Federal Big Data Working Group Meetup On 07 June 2014 By Chuck Rehberg, CTO Semantic Insights a Division of Trigent Software

Presented to The Federal Big Data Working Group Meetup On 07 June 2014 By Chuck Rehberg, CTO Semantic Insights a Division of Trigent Software Semantic Research using Natural Language Processing at Scale; A continued look behind the scenes of Semantic Insights Research Assistant and Research Librarian Presented to The Federal Big Data Working

More information

Invitée : Islane Louis Révision : Directions. Conversation (jaune): Les expressions de survivance

Invitée : Islane Louis Révision : Directions. Conversation (jaune): Les expressions de survivance L Alliance Française Présente: «Bilingual Burlington» La troisième classe jeudi, le 10 février, 2011 6 :30 8 :00 Hôtel de ville - Salle numéro 12 Invitée : Islane Louis Révision : Directions Conversation

More information

Editing and Proofreading. University Learning Centre Writing Help Ron Cooley, Professor of English ron.cooley@usask.ca

Editing and Proofreading. University Learning Centre Writing Help Ron Cooley, Professor of English ron.cooley@usask.ca Editing and Proofreading University Learning Centre Writing Help Ron Cooley, Professor of English ron.cooley@usask.ca 3-stage writing process (conventional view) 1. Pre-writing Literature review Data

More information

According to the Argentine writer Jorge Luis Borges, in the Celestial Emporium of Benevolent Knowledge, animals are divided

According to the Argentine writer Jorge Luis Borges, in the Celestial Emporium of Benevolent Knowledge, animals are divided Categories Categories According to the Argentine writer Jorge Luis Borges, in the Celestial Emporium of Benevolent Knowledge, animals are divided into 1 2 Categories those that belong to the Emperor embalmed

More information

Building a Question Classifier for a TREC-Style Question Answering System

Building a Question Classifier for a TREC-Style Question Answering System Building a Question Classifier for a TREC-Style Question Answering System Richard May & Ari Steinberg Topic: Question Classification We define Question Classification (QC) here to be the task that, given

More information

written by Talk in French Learn French as a habit French Beginner Grammar in 30 days

written by Talk in French Learn French as a habit French Beginner Grammar in 30 days written by Talk in French Learn French as a habit French Beginner Grammar in 30 days A FOREWORD (OF SOME SORT) French is the second most widely taught foreign language in the world. Weirdly, however, and

More information

Spanish Curriculum Grades 4-8

Spanish Curriculum Grades 4-8 Spanish Curriculum Grades 4-8 Spanish Grade Four 1. Students will be introduced, recognize, and recite the Spanish Alphabet. 2. Students will recognize, recite and respond to simple Spanish greetings.

More information

Application of Natural Language Interface to a Machine Translation Problem

Application of Natural Language Interface to a Machine Translation Problem Application of Natural Language Interface to a Machine Translation Problem Heidi M. Johnson Yukiko Sekine John S. White Martin Marietta Corporation Gil C. Kim Korean Advanced Institute of Science and Technology

More information

ONLINE ENGLISH LANGUAGE RESOURCES

ONLINE ENGLISH LANGUAGE RESOURCES ONLINE ENGLISH LANGUAGE RESOURCES Developed and updated by C. Samuel for students taking courses at the English and French Language Centre, Faculty of Arts (Links live as at November 2, 2009) Dictionaries

More information

Towards a RB-SMT Hybrid System for Translating Patent Claims Results and Perspectives

Towards a RB-SMT Hybrid System for Translating Patent Claims Results and Perspectives Towards a RB-SMT Hybrid System for Translating Patent Claims Results and Perspectives Ramona Enache and Adam Slaski Department of Computer Science and Engineering Chalmers University of Technology and

More information

D2.4: Two trained semantic decoders for the Appointment Scheduling task

D2.4: Two trained semantic decoders for the Appointment Scheduling task D2.4: Two trained semantic decoders for the Appointment Scheduling task James Henderson, François Mairesse, Lonneke van der Plas, Paola Merlo Distribution: Public CLASSiC Computational Learning in Adaptive

More information

The Specific Text Analysis Tasks at the Beginning of MDA Life Cycle

The Specific Text Analysis Tasks at the Beginning of MDA Life Cycle SCIENTIFIC PAPERS, UNIVERSITY OF LATVIA, 2010. Vol. 757 COMPUTER SCIENCE AND INFORMATION TECHNOLOGIES 11 22 P. The Specific Text Analysis Tasks at the Beginning of MDA Life Cycle Armands Šlihte Faculty

More information

Level 1 Teacher s Manual

Level 1 Teacher s Manual TABLE OF CONTENTS Lesson Study Skills Unit Page 1 STUDY SKILLS. Introduce study skills. Use a Quigley story to discuss study skills. 1 2 STUDY SKILLS. Introduce getting organized. Use a Quigley story to

More information

Special Topics in Computer Science

Special Topics in Computer Science Special Topics in Computer Science NLP in a Nutshell CS492B Spring Semester 2009 Jong C. Park Computer Science Department Korea Advanced Institute of Science and Technology INTRODUCTION Jong C. Park, CS

More information

2. Il faut + infinitive and its more nuanced alternative il faut que + subjunctive.

2. Il faut + infinitive and its more nuanced alternative il faut que + subjunctive. Teaching notes This resource is designed to enable students to broaden their range of expression on the issue of homelessness and poverty, specifically in terms of suggesting possible solutions. The aim

More information

Faculty Response to Grammar Errors in the Writing of ESL Students. by Lyndall Nairn, Lynchburg College, Lynchburg, VA, nairn@lynchburg.

Faculty Response to Grammar Errors in the Writing of ESL Students. by Lyndall Nairn, Lynchburg College, Lynchburg, VA, nairn@lynchburg. Faculty Response to Grammar Errors in the Writing of ESL Students by Lyndall Nairn, Lynchburg College, Lynchburg, VA, nairn@lynchburg.edu Many ESL instructors and students alike regard the teaching and

More information

Context Grammar and POS Tagging

Context Grammar and POS Tagging Context Grammar and POS Tagging Shian-jung Dick Chen Don Loritz New Technology and Research New Technology and Research LexisNexis LexisNexis Ohio, 45342 Ohio, 45342 dick.chen@lexisnexis.com don.loritz@lexisnexis.com

More information

Chapter 13, Sections 13.1-13.2. Auxiliary Verbs. 2003 CSLI Publications

Chapter 13, Sections 13.1-13.2. Auxiliary Verbs. 2003 CSLI Publications Chapter 13, Sections 13.1-13.2 Auxiliary Verbs What Auxiliaries Are Sometimes called helping verbs, auxiliaries are little words that come before the main verb of a sentence, including forms of be, have,

More information

Advanced Grammar in Use

Advanced Grammar in Use Advanced Grammar in Use A reference and practice book for advanced learners of English Third Edition without answers c a m b r i d g e u n i v e r s i t y p r e s s Cambridge, New York, Melbourne, Madrid,

More information

Syntactic Theory on Swedish

Syntactic Theory on Swedish Syntactic Theory on Swedish Mats Uddenfeldt Pernilla Näsfors June 13, 2003 Report for Introductory course in NLP Department of Linguistics Uppsala University Sweden Abstract Using the grammar presented

More information

Comparative Analysis on the Armenian and Korean Languages

Comparative Analysis on the Armenian and Korean Languages Comparative Analysis on the Armenian and Korean Languages Syuzanna Mejlumyan Yerevan State Linguistic University Abstract It has been five years since the Korean language has been taught at Yerevan State

More information

NATURAL LANGUAGE TO SQL CONVERSION SYSTEM

NATURAL LANGUAGE TO SQL CONVERSION SYSTEM International Journal of Computer Science Engineering and Information Technology Research (IJCSEITR) ISSN 2249-6831 Vol. 3, Issue 2, Jun 2013, 161-166 TJPRC Pvt. Ltd. NATURAL LANGUAGE TO SQL CONVERSION

More information

Curso académico 2015/2016 INFORMACIÓN GENERAL ESTRUCTURA Y CONTENIDOS HABILIDADES: INGLÉS

Curso académico 2015/2016 INFORMACIÓN GENERAL ESTRUCTURA Y CONTENIDOS HABILIDADES: INGLÉS Curso académico 2015/2016 INFORMACIÓN GENERAL ESTRUCTURA Y CONTENIDOS HABILIDADES: INGLÉS Objetivos de Habilidades: inglés El objetivo de la prueba es comprobar que el alumno ha adquirido un nivel B1 (dentro

More information

Symbiosis of Evolutionary Techniques and Statistical Natural Language Processing

Symbiosis of Evolutionary Techniques and Statistical Natural Language Processing 1 Symbiosis of Evolutionary Techniques and Statistical Natural Language Processing Lourdes Araujo Dpto. Sistemas Informáticos y Programación, Univ. Complutense, Madrid 28040, SPAIN (email: lurdes@sip.ucm.es)

More information

LINGSTAT: AN INTERACTIVE, MACHINE-AIDED TRANSLATION SYSTEM*

LINGSTAT: AN INTERACTIVE, MACHINE-AIDED TRANSLATION SYSTEM* LINGSTAT: AN INTERACTIVE, MACHINE-AIDED TRANSLATION SYSTEM* Jonathan Yamron, James Baker, Paul Bamberg, Haakon Chevalier, Taiko Dietzel, John Elder, Frank Kampmann, Mark Mandel, Linda Manganaro, Todd Margolis,

More information

Pupil SPAG Card 1. Terminology for pupils. I Can Date Word

Pupil SPAG Card 1. Terminology for pupils. I Can Date Word Pupil SPAG Card 1 1 I know about regular plural noun endings s or es and what they mean (for example, dog, dogs; wish, wishes) 2 I know the regular endings that can be added to verbs (e.g. helping, helped,

More information

EAST PENNSBORO AREA COURSE: LFS 416 SCHOOL DISTRICT

EAST PENNSBORO AREA COURSE: LFS 416 SCHOOL DISTRICT EAST PENNSBORO AREA COURSE: LFS 416 SCHOOL DISTRICT Unit: Grammar Days: Subject(s): French 4 Grade(s):9-12 Key Learning(s): Students will passively recognize target grammatical structures alone and in

More information

2016-2017 Curriculum Catalog

2016-2017 Curriculum Catalog 2016-2017 Curriculum Catalog 2016 Glynlyon, Inc. Table of Contents LANGUAGE ARTS 400 COURSE OVERVIEW... 1 UNIT 1: JESUS, OUR EXAMPLE... 3 UNIT 2: WORKING WITH INFORMATION... 3 UNIT 3: THE STORY OF OUR

More information

Grammar Rules: Parts of Speech Words are classed into eight categories according to their uses in a sentence.

Grammar Rules: Parts of Speech Words are classed into eight categories according to their uses in a sentence. Grammar Rules: Parts of Speech Words are classed into eight categories according to their uses in a sentence. 1. Noun Name for a person, animal, thing, place, idea, activity. John, cat, box, desert,, golf

More information

UNKNOWN WORDS ANALYSIS IN POS TAGGING OF SINHALA LANGUAGE

UNKNOWN WORDS ANALYSIS IN POS TAGGING OF SINHALA LANGUAGE UNKNOWN WORDS ANALYSIS IN POS TAGGING OF SINHALA LANGUAGE A.J.P.M.P. Jayaweera #1, N.G.J. Dias *2 # Virtusa Pvt. Ltd. No 752, Dr. Danister De Silva Mawatha, Colombo 09, Sri Lanka * Department of Statistics

More information