+ All Categories
Home > Documents > Introduction to Computational Linguistics - Section

Introduction to Computational Linguistics - Section

Date post: 09-Jan-2022
Category:
Upload: others
View: 3 times
Download: 0 times
Share this document with a friend
15
LING472 Section Plan Language Theory Assignment 1 Assignment 2 Introduction to Computational Linguistics Section Olga Zamaraeva University of Washington April 10, 2020 1 / 11
Transcript
Page 1: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

Introduction to Computational LinguisticsSection

Olga Zamaraeva

University of Washington

April 10, 2020

1 / 11

Page 2: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

Plan for today

I My notes on language theoryI Assignment 1 final notesI Assignment 2 overview

2 / 11

Page 3: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

Language Theory: Why the ChomskyHierarchy?

3 / 11

Page 4: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

Language Theory: What Does the LearnerNeed to Learn?

4 / 11

Page 5: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

Difficulties, Complaints, and Questions

I Introductory programmingI I have no idea what to do with this tool/program!!!

I Introductory linguisticsI The assignment is unclear!!!

I Why is intro to programming not a prerequisite?I Why is basic programming worth learning?I Can’t you just give us the full list of sentences/words our

program is supposed to handle?

5 / 11

Page 6: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

My advice

I Work in a systematic mannerI Analyse the tasks into small componentsI Make sure you understand each component separately

before combining things

I Example: What does this line of code mean?I str = re.sub(pattern,replacement,str)I Look up variables, assignment, functions, argumentsI Look up re.sub() definition in python3 docsI Debug your program step by stepI Pay attention to the program state

I Example: What does the ask mean?I “sentences.txt must include the subject-verb agreement

paradigm of the verb “to be” in 1st and 2nd person”I Look up subject-verb agreement in a linguistics textI Get access to the full paradigm in e.g. ESL materialsI Define and/or cite things in your write up

6 / 11

Page 7: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

My advice

I Work in a systematic mannerI Analyse the tasks into small componentsI Make sure you understand each component separately

before combining thingsI Example: What does this line of code mean?

I str = re.sub(pattern,replacement,str)

I Look up variables, assignment, functions, argumentsI Look up re.sub() definition in python3 docsI Debug your program step by stepI Pay attention to the program state

I Example: What does the ask mean?I “sentences.txt must include the subject-verb agreement

paradigm of the verb “to be” in 1st and 2nd person”I Look up subject-verb agreement in a linguistics textI Get access to the full paradigm in e.g. ESL materialsI Define and/or cite things in your write up

6 / 11

Page 8: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

My advice

I Work in a systematic mannerI Analyse the tasks into small componentsI Make sure you understand each component separately

before combining thingsI Example: What does this line of code mean?

I str = re.sub(pattern,replacement,str)I Look up variables, assignment, functions, argumentsI Look up re.sub() definition in python3 docsI Debug your program step by stepI Pay attention to the program state

I Example: What does the ask mean?I “sentences.txt must include the subject-verb agreement

paradigm of the verb “to be” in 1st and 2nd person”I Look up subject-verb agreement in a linguistics textI Get access to the full paradigm in e.g. ESL materialsI Define and/or cite things in your write up

6 / 11

Page 9: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

My advice

I Work in a systematic mannerI Analyse the tasks into small componentsI Make sure you understand each component separately

before combining thingsI Example: What does this line of code mean?

I str = re.sub(pattern,replacement,str)I Look up variables, assignment, functions, argumentsI Look up re.sub() definition in python3 docsI Debug your program step by stepI Pay attention to the program state

I Example: What does the ask mean?I “sentences.txt must include the subject-verb agreement

paradigm of the verb “to be” in 1st and 2nd person”

I Look up subject-verb agreement in a linguistics textI Get access to the full paradigm in e.g. ESL materialsI Define and/or cite things in your write up

6 / 11

Page 10: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

My advice

I Work in a systematic mannerI Analyse the tasks into small componentsI Make sure you understand each component separately

before combining thingsI Example: What does this line of code mean?

I str = re.sub(pattern,replacement,str)I Look up variables, assignment, functions, argumentsI Look up re.sub() definition in python3 docsI Debug your program step by stepI Pay attention to the program state

I Example: What does the ask mean?I “sentences.txt must include the subject-verb agreement

paradigm of the verb “to be” in 1st and 2nd person”I Look up subject-verb agreement in a linguistics textI Get access to the full paradigm in e.g. ESL materialsI Define and/or cite things in your write up

6 / 11

Page 11: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

Debugging the program

I Shown in the section video from April 3, starting atabout minute 34

7 / 11

Page 12: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

Assignment 2

I Excellent tutorial, do read (a few times if necessary)I Technical component

I Entirely in command lineI visualization of FSA possible using a program called

“graphviz” (not required)I No pythonI A special language/formalism called “foma”I The off-the-shelf program “foma” which understands

that language/formalismI Linguistic component

I Basic (but fairly extensive!) morphology; phonologyI Linguistic description of an unfamiliar language

8 / 11

Page 13: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

Working on patas (if you have Windows)

I Connect to patas via sshI Type /opt/foma/bin/fomaI (This is also in your instructions for Assign.2)I To exit: Ctrl+DI Note that you can still edit your files locally and copy

them to patas to run foma on them

9 / 11

Page 14: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

Working locally (recommended for OSX/linux)

I Install foma following the instructions for Assign.2I Copy the file “foma” into your /usr/local/bin

I In terminal, from the directory where you put the newfles: cp foma /usr/local/bin/

10 / 11

Page 15: Introduction to Computational Linguistics - Section

LING472

Section

Plan

Language Theory

Assignment 1

Assignment 2

foma example

I example.lexc and example.fomaI Representing a trivial example with English morphology

and phonologyI The tutorial has another, more complete one

I Files are available to you on Canvas/FilesI Start with the lexc file (morphology)I Start foma, read the lexicon FSA in, examine the output

(pairs)I How do I read the lexicon FSA in???

I Continue with the foma file (phonology)I if you have graphviz, try view

I graphviz may or may not install on your machineI get it from their website rather than pip

11 / 11


Recommended