LING/C SC 581: Advanced Computational Linguistics

Slides:



Advertisements
Similar presentations
LING 581: Advanced Computational Linguistics Lecture Notes January 19th.
Advertisements

Methods in Computational Linguistics II Queens College Lecture 1: Introduction.
LING 581: Advanced Computational Linguistics Lecture Notes March 9th.
LING 581: Advanced Computational Linguistics Lecture Notes May 5th.
Shallow Processing: Summary Shallow Processing Techniques for NLP Ling570 December 7, 2011.
LING/C SC/PSYC 438/538 Lecture 4 9/1 Sandiway Fong.
LING 581: Advanced Computational Linguistics Lecture Notes January 26th.
LING/C SC/PSYC 438/538 Computational Linguistics Sandiway Fong Lecture 6: 9/6.
LING 581: Advanced Computational Linguistics Lecture Notes January 19th.
April 26, 2007Workshop on Treebanking, NAACL-HTL 2007 Rochester1 Treebanks and Parsing Jan Hajič Institute of Formal and Applied Linguistics School of.
LING/C SC 581: Advanced Computational Linguistics Lecture Notes Jan 22 nd.
1 Statistical NLP: Lecture 6 Corpus-Based Work. 2 4 Text Corpora are usually big. They also need to be representative samples of the population of interest.
LING 388: Language and Computers Sandiway Fong Lecture 22: 11/10.
Methods for the Automatic Construction of Topic Maps Eric Freese, Senior Consultant ISOGEN International.
Levels of Language 6 Levels of Language. Levels of Language Aspect of language are often referred to as 'language levels'. To look carefully at language.
WEB 2.0 ELEMENTS BY: ANSHUL SINHA 8AA. CONTENT Back ground information Podcasts Blogs Tagging Rss- Really Simple Sindicación Sources Why I chose this.
Natural Language Processing Lecture 15—10/15/2015 Jim Martin.
LING/C SC 581: Advanced Computational Linguistics Lecture Notes Feb 5 th.
LING/C SC 581: Advanced Computational Linguistics Lecture Notes Jan 13 th.
Final Review  Syntax  Semantics/Pragmatics  Sociolinguistics  FINAL will be part open book, and part closed book  Will use similar tasks as Problem.
LING/C SC 581: Advanced Computational Linguistics Lecture Notes Feb 3 rd.
INTRODUCTION TO APPLIED LINGUISTICS
LING/C SC 581: Advanced Computational Linguistics Lecture Notes Feb 17 th.
Test Title Test Content.
CSS 290: Video Games and Computer Programming
Introduction to Linguistics
SPOUSE LEADERSHIP DEVELOPMENT COURSE (SLDC) CLASS 68
Enrico Grazzi Lingua e Traduzione Inglese I LCMC 6 Cfu A.A
Mr. Meldrem’s Monday Memo
Natural Language Processing (NLP)
LING/C SC/PSYC 438/538 Lecture 2 Sandiway Fong.
LING/C SC/PSYC 438/538 Lecture 20 Sandiway Fong.
LING/C SC 581: Advanced Computational Linguistics
LING 388: Computers and Language
Text Analytics Giuseppe Attardi Università di Pisa
LING/C SC 581: Advanced Computational Linguistics
LING/C SC 581: Advanced Computational Linguistics
LING/C SC 581: Advanced Computational Linguistics
LING 581: Advanced Computational Linguistics
LING/C SC 581: Advanced Computational Linguistics
LING/C SC/PSYC 438/538 Lecture 23 Sandiway Fong.
LING/C SC 581: Advanced Computational Linguistics
LING/C SC 581: Advanced Computational Linguistics
Language- an abstract cognitive system which allows humans to produce and comprehend meaningful utterances Dialect- a variety of language, defined by geographical.
LING/C SC/PSYC 438/538 Lecture 24 Sandiway Fong.
Tuesday, January 22, 2019.
Friday, January 18, 2019.
7th Grade Math Warm-ups Week of November 7-11, 2016.
LING 388: Computers and Language
LING/C SC/PSYC 438/538 Lecture 13 Sandiway Fong.
LING/C SC 581: Advanced Computational Linguistics
Systems Analysis and Design I
Thursday, January 17, 2019.
LING/C SC 581: Advanced Computational Linguistics
PURE Learning Plan Richard Lee, James Chen,.
Natural Language Processing (NLP)
Wednesday, January 23, 2019.
Tuesday, January 8, 2019.
Friday, February 1, 2019.
Dear students, Welcome to the course Linguistics.
Thursday, January 31, 2019.
LING/C SC 581: Advanced Computational Linguistics
LING/C SC 581: Advanced Computational Linguistics
Performance Criteria across ELP Levels
LING/C SC 581: Advanced Computational Linguistics
LING/C SC 581: Advanced Computational Linguistics
Introduction Lecture 1 Wed, Jan 17, 2007.
LING/C SC/PSYC 438/538 Lecture 3 Sandiway Fong.
LING/C SC 581: Advanced Computational Linguistics
Natural Language Processing (NLP)
Presentation transcript:

LING/C SC 581: Advanced Computational Linguistics Lecture 5 Jan 24th

2019 HLT Lecture Series Speaker Title Date Tatjana Scheffler Analyzing Discourse Structure on Social Media Friday Feb 15th, 3pm, Comm 311. Marcos Zampieri Language Variation and Automatic Language Identification. The Case of Dialects and Similar Languages. Wednesday Feb 20th, noon, room TBA Adriana Picoral Investigating Multilingualism through Computational Linguistics. Wednesday Feb 27th, noon, room TBA Gus Hahn-Powell TBA Wednesday Mar 13th, noon, room TBA Miikka Silfverberg Deep Learning for inflectional morphology and phonology Wednesday Mar 20th, noon, room TBA

Administrivia Homework 3 graded Google Cloud Natural Language is pretty good: 85% of you said so… Remark: -None- is a POS tag it indicates an empty category and its contents should not be part of the input sentence to Google!

Last Time Note on Homework 4 install and test it (no need to report)

Last Time Penn Treebank (PTB) with nltk ~/nltk_data/corpora/ptb

Quick Homework 5 In all cases show your work, i.e. how you derived your number Using: from nltk.corpus import ptb ptb.parsed_sents(categories=['news']) 49208 sentences (Wall Street Journal) .productions() Q1: how many phrase structure rules are there? Q2: what are the top 5 unary branching rules? Q3: what are the top 5 binary branching rules? Q4: what are the top 5 > binary branching rules?

Quick Homework 5

Quick Homework 5 Hints: maybe use… Due date: nested list comprehension to extract all production rules Counter .most_common() Due date: by the end of next week one PDF file!