Machine Translation: Examples. Statistical NLP Spring MT: Evaluation. Phrasal / Syntactic MT: Examples. Lecture 7: Phrase-Based MT

Size: px
Start display at page:

Download "Machine Translation: Examples. Statistical NLP Spring MT: Evaluation. Phrasal / Syntactic MT: Examples. Lecture 7: Phrase-Based MT"

Transcription

1 Statistical NLP Spring 2011 Machine Translation: Examples Lecture 7: Phrase-Based MT Dan Klein UC Berkeley Levels of Transfer World-Level MT: Examples la politique la haine. politics of hate. the policy of the hatred. nous avons signé le protocole. we did sign the memorandum of agreement. we have signed the protocol. où était le plan soli? but where was the solid plan? where was the economic base? Phrasal / Syntactic MT: Examples MT: Evaluation Human evaluations: subject measures, fluency/aquacy Automatic measures: n-gram match to references NIST measure: n-gram recall (worked poorly) BLEU: n-gram precision (no one really likes it, but everyone uses it) BLEU: P1 = unigram precision P2, P3, P4 = bi-, tri-, 4-gram precision Weighted geometric mean of P1-4 Brevity penalty (why?) Somewhat hard to game 1

2 Automatic Metrics Work (?) Corpus-Based MT Moling corresponnces between languages Sentence-aligned parallel corpus: Yo lo haré mañana I will do it tomorrow Hasta pronto See you soon Hasta pronto See you around Machine translation system: Yo lo haré pronto Mol of translation I will do it soon I will do it around See you tomorrow Phrase-Based Systems Sentence-aligned corpus Word alignments cat chat 0.9 the cat le chat 0.8 dog chien 0.8 house maison 0.6 my house ma maison 0.9 language langue 0.9 Phrase table (translation mol) Many slis and examples from Philipp Koehn or John DeNero Phrase-Based Decoding The Pharaoh Mol 这 7 人中包括来自法国和俄罗斯的宇航员. [Koehn et al, 2003] Segmentation Translation Distortion Decor sign is important: [Koehn et al. 03] 2

3 The Pharaoh Mol Phrase Weights Where do we get these counts? Phrase-Based Decoding Monotonic Word Translation Cost is LM * TM It s an HMM? P(e e -1,e -2 ) P(f e) State inclus Exposed English Position in foreign Dynamic program loop? [. a slap, 5] [. slap to, 6] [. slap by, 6] for (econtext in allecontexts) score = scores[fposition-1][econtext] * LM(eContext+eOption) * TM(eOption, fword[fposition]) scores[fposition][econtext[2]+eoption] = max score Beam Decoding Phrase Translation For real MT mols, this kind of dynamic program is a disaster (why?) Standard solution is beam search: for each position, keep track of only the best k hypotheses for (econtext in bestecontexts[fposition]) score = scores[fposition-1][econtext] * LM(eContext+eOption) * TM(eOption, fword[fposition]) bestecontexts.maybeadd(econtext[2]+eoption, score) Still pretty slow why? Useful trick: cube pruning (Chiang 2005) If monotonic, almost an HMM; technically a semi-hmm for (lastposition < fposition) for (econtext in econtexts) combine hypothesis for (lastposition ending in econtext) with eoption If distortion now what? Example from David Chiang 3

4 Non-Monotonic Phrasal MT Pruning: Beams + Forward Costs Problem: easy partial analyses are cheaper Solution 1: use beams per foreign subset Solution 2: estimate forward costs (A*-like) The Pharaoh Decor Hypotheis Lattices Word Alignment Word Alignment x What is the anticipated cost of collecting fees unr the new proposal? En vertu s nouvelles propositions, quel est le coût prévu perception s droits? What is the anticipated cost of collecting fees unr the new proposal? z En vertu les nouvelles propositions, quel est le coût prévu perception les droits? 4

5 Unsupervised Word Alignment 1-to-Many Alignments Input: a bitext: pairs of translated sentences nous acceptons votre opinion. we accept your view. Output: alignments: pairs of translated words When words have unique sources, can represent as a (forward) alignment function a from French to English positions Many-to-Many Alignments IBM Mol 1 (Brown 93) Alignments: a hidn vector called an alignment specifies which English source is responsible for each French target word. IBM Mols 1/2 E: Thank you, I shall do so gladly. A: F: Gracias, lo haré muy buen grado. Mol Parameters Emissions: P( F1 = Gracias EA1 = Thank ) Transitions: P( A2 = 3) 5

Statistical NLP Spring Machine Translation: Examples

Statistical NLP Spring Machine Translation: Examples Statistical NLP Spring 2009 Lecture 19: Phrasal Translation Dan Klein UC Berkeley Machine Translation: Examples 1 Corpus-Based MT Modeling correspondences between languages Sentence-aligned parallel corpus:

More information

Machine Translation: Examples. Statistical NLP Spring Levels of Transfer. Corpus-Based MT. World-Level MT: Examples

Machine Translation: Examples. Statistical NLP Spring Levels of Transfer. Corpus-Based MT. World-Level MT: Examples Statistical NLP Spring 2009 Machine Translation: Examples Lecture 19: Phrasal Translation Dan Klein UC Berkeley Corpus-Based MT Levels of Transfer Modeling correspondences between languages Sentence-aligned

More information

CSE 517 Natural Language Processing Winter 2013

CSE 517 Natural Language Processing Winter 2013 CSE 517 Natural Language Processing Winter 2013 Phrase Based Translation Luke Zettlemoyer Slides from Philipp Koehn and Dan Klein Phrase-Based Systems Sentence-aligned corpus Word alignments cat chat 0.9

More information

Machine Translation Part 2, and the EM Algorithm

Machine Translation Part 2, and the EM Algorithm Machine Translation Part 2, and the EM Algorithm CS 585, Fall 2015 Introduction to Natural Language Processing http://people.cs.umass.edu/~brenocon/inlp2015/ Brendan O Connor College of Information and

More information

Machine Translation and Advanced Topics on LSTMs

Machine Translation and Advanced Topics on LSTMs Machine Translation and Advanced Topics on LSTMs COSC 7336: Advanced Natural Language Processing Fall 2017 Some content on these slides was borrowed from Riloff, Money, and Socher and Manning. Announcements

More information

The decoder in statistical machine translation: how does it work?

The decoder in statistical machine translation: how does it work? The decoder in statistical machine translation: how does it work? Alexandre Patry RALI/DIRO Université de Montréal June 20, 2006 Alexandre Patry (RALI) The decoder in SMT June 20, 2006 1 / 42 Machine translation

More information

Statistical Machine Translation Lecture 5. Decoding with Phrase-Based Models

Statistical Machine Translation Lecture 5. Decoding with Phrase-Based Models p. Statistical Machine Translation Lecture 5 Decoding with Phrase-Based Models Stephen Clark based on slides by Phillip Koehn p. Statistical Machine Translation p Components: Translation model, language

More information

COMPARING STATISTICAL MACHINE TRANSLATION (SMT) AND NEURAL MACHINE TRANSLATION (NMT) PERFORMANCES Hervé Blanchon Laurent Besacier Laboratoire LIG Équipe GETALP "#$%%& $%& speech GETA L langue P parole!

More information

Experiments with Fisher Data

Experiments with Fisher Data Experiments with Fisher Data Gunnar Evermann, Bin Jia, Kai Yu, David Mrva Ricky Chan, Mark Gales, Phil Woodland May 16th 2004 EARS STT Meeting May 2004 Montreal Overview Introduction Pre-processing 2000h

More information

Towards Using Hybrid Word and Fragment Units for Vocabulary Independent LVCSR Systems

Towards Using Hybrid Word and Fragment Units for Vocabulary Independent LVCSR Systems Towards Using Hybrid Word and Fragment Units for Vocabulary Independent LVCSR Systems Ariya Rastrow, Abhinav Sethy, Bhuvana Ramabhadran and Fred Jelinek Center for Language and Speech Processing IBM TJ

More information

Learning to translate with source and target syntax. David Chiang, USC Information Sciences Institute

Learning to translate with source and target syntax. David Chiang, USC Information Sciences Institute Learning to translate with source and target syntax David Chiang, USC Information Sciences Institute 14 July 2010 Overview Using source and target syntax Why is it hard? How can we make it better? Let

More information

Basic Natural Language Processing

Basic Natural Language Processing Basic Natural Language Processing Why NLP? Understanding Intent Search Engines Question Answering Azure QnA, Bots, Watson Digital Assistants Cortana, Siri, Alexa Translation Systems Azure Language Translation,

More information

Non-Fiction Terms for Constructed Response and Essay Analysis students will be expected to know, recognize and apply these concepts and terms to

Non-Fiction Terms for Constructed Response and Essay Analysis students will be expected to know, recognize and apply these concepts and terms to Non-Fiction Terms for Constructed Response and Essay Analysis students will be expected to know, recognize and apply these concepts and terms to analyse an unseen essay. Style: The way a writer puts words

More information

NVLAP LAB CODE LM Test Report. For. EiKO Global, LLC. (Brand Name: EiKO) W. 84th St, Shawnee, KS USA

NVLAP LAB CODE LM Test Report. For. EiKO Global, LLC. (Brand Name: EiKO) W. 84th St, Shawnee, KS USA LM-79-08 Test Report For EiKO Global, LLC (Brand Name: EiKO) 23220 W. 84th St, Shawnee, KS 66227 USA Outdoor Non-Cutoff and Semi-Cutoff Wallmounted Area Luminaires Model name(s): WMG-2C-50K-U Representative

More information

methodology n 1 Using a dictionary

methodology n 1 Using a dictionary methodology n 1 Using a dictionary Using a dictionary Objectives: - being able to understand any oral or written document with the help of a dictionary or an online translator - knowing how to determine

More information

Automatic Labelling of tabla signals

Automatic Labelling of tabla signals ISMIR 2003 Oct. 27th 30th 2003 Baltimore (USA) Automatic Labelling of tabla signals Olivier K. GILLET, Gaël RICHARD Introduction Exponential growth of available digital information need for Indexing and

More information

A Super Fun French Project. Ma famille...et moi! Family-themed vocab. avoir+age etre adjective agreement sentence structure

A Super Fun French Project. Ma famille...et moi! Family-themed vocab. avoir+age etre adjective agreement sentence structure A Super Fun French Project Ma famille...et moi! Family-themed vocab. avoir+age etre adjective agreement sentence structure Bonjour! I hope you and your students enjoy these materials! If you have a minute,

More information

Detecting Attempts at Humor in Multiparty Meetings

Detecting Attempts at Humor in Multiparty Meetings Detecting Attempts at Humor in Multiparty Meetings Kornel Laskowski Carnegie Mellon University Pittsburgh PA, USA 14 September, 2008 K. Laskowski ICSC 2009, Berkeley CA, USA 1/26 Why bother with humor?

More information

Supervised Learning of Complete Morphological Paradigms

Supervised Learning of Complete Morphological Paradigms Supervised Learning of Complete Morphological Paradigms Greg Durrett and John DeNero UC Berkeley / Google Morphological Inflection train (de) Zug Morphological Inflection train (de) Zug NOM, SING: Zug

More information

FPGA Based Implementation of Convolutional Encoder- Viterbi Decoder Using Multiple Booting Technique

FPGA Based Implementation of Convolutional Encoder- Viterbi Decoder Using Multiple Booting Technique FPGA Based Implementation of Convolutional Encoder- Viterbi Decoder Using Multiple Booting Technique Dr. Dhafir A. Alneema (1) Yahya Taher Qassim (2) Lecturer Assistant Lecturer Computer Engineering Dept.

More information

Mixed Linear Models. Case studies on speech rate modulations in spontaneous speech. LSA Summer Institute 2009, UC Berkeley

Mixed Linear Models. Case studies on speech rate modulations in spontaneous speech. LSA Summer Institute 2009, UC Berkeley Mixed Linear Models Case studies on speech rate modulations in spontaneous speech LSA Summer Institute 2009, UC Berkeley Florian Jaeger University of Rochester Managing speech rate How do speakers determine

More information

LM Test Report. For. GREEN LOGIC LED ELECTRICAL SUPPLY INC (Brand Name: GLLUSA) Fuel Pump Canopy Luminaires

LM Test Report. For. GREEN LOGIC LED ELECTRICAL SUPPLY INC (Brand Name: GLLUSA) Fuel Pump Canopy Luminaires LM-79-08 Test Report For GREEN LOGIC LED ELECTRICAL SUPPLY INC (Brand Name: GLLUSA) ShenFuBao Industry Park,Bonded area,futian District,Shenzhen,China Fuel Pump Canopy Luminaires Model name(s):33-cp1-760-8xx

More information

Expressive Singing Synthesis based on Unit Selection for the Singing Synthesis Challenge 2016

Expressive Singing Synthesis based on Unit Selection for the Singing Synthesis Challenge 2016 Expressive Singing Synthesis based on Unit Selection for the Singing Synthesis Challenge 2016 Jordi Bonada, Martí Umbert, Merlijn Blaauw Music Technology Group, Universitat Pompeu Fabra, Spain jordi.bonada@upf.edu,

More information

Real-Time Spectrogram (RTS tm )

Real-Time Spectrogram (RTS tm ) Real-Time Spectrogram (RTS tm ) View, edit and measure digital sound files The Real-Time Spectrogram (RTS tm ) displays the time-aligned spectrogram and waveform of a continuous sound file. The RTS can

More information

Pre-Translation for Neural Machine Translation

Pre-Translation for Neural Machine Translation Pre-Translation for Neural Machine Translation Jan Niehues, Eunah Cho, Thanh-Le Ha and Alex Waibel KIT - Institute for Anthropomatics and 0 2016-12-15 Jan Niehues - Pre-Translation for Neural Machine Translation

More information

Detecting Medicaid Data Anomalies Using Data Mining Techniques Shenjun Zhu, Qiling Shi, Aran Canes, AdvanceMed Corporation, Nashville, TN

Detecting Medicaid Data Anomalies Using Data Mining Techniques Shenjun Zhu, Qiling Shi, Aran Canes, AdvanceMed Corporation, Nashville, TN Paper SDA-04 Detecting Medicaid Data Anomalies Using Data Mining Techniques Shenjun Zhu, Qiling Shi, Aran Canes, AdvanceMed Corporation, Nashville, TN ABSTRACT The purpose of this study is to use statistical

More information

A Dominant Gene Genetic Algorithm for a Substitution Cipher in Cryptography

A Dominant Gene Genetic Algorithm for a Substitution Cipher in Cryptography A Dominant Gene Genetic Algorithm for a Substitution Cipher in Cryptography Derrick Erickson and Michael Hausman University of Colorado at Colorado Springs CS 591 Substitution Cipher 1. Remove all but

More information

Year 3 French Revision Pack Mr Hempsted and Mme Chevalley

Year 3 French Revision Pack Mr Hempsted and Mme Chevalley Name:.. Year 3 French Revision Pack Mr Hempsted and Mme Chevalley Summer 2018 1 Introduction for parents and pupils: Bonjour! Here is your French revision pack for your upcoming summer exams. Please don

More information

Note to Mr. Lopes LETTERS FOR THE SECRETARY-GENERAL

Note to Mr. Lopes LETTERS FOR THE SECRETARY-GENERAL Note to Mr. Lopes LETTERS FOR THE SECRETARY-GENERAL it li i 0 E 8 r- K OCT 1 0 2006 At- 13, \o^ i CE OF THE SEC:-.;, nic^nerai. fj B 1. Thank you for your note of 6 October on the preparation of congratulatory

More information

Generating Chinese Classical Poems Based on Images

Generating Chinese Classical Poems Based on Images , March 14-16, 2018, Hong Kong Generating Chinese Classical Poems Based on Images Xiaoyu Wang, Xian Zhong, Lin Li 1 Abstract With the development of the artificial intelligence technology, Chinese classical

More information

关于台词的备注 : 请注意这不是广播节目的逐字稿件 本文稿可能没有体现录制 编辑过程中对节目做出的改变

关于台词的备注 : 请注意这不是广播节目的逐字稿件 本文稿可能没有体现录制 编辑过程中对节目做出的改变 BBC Learning English 15 Minute Programmes 15 分钟节目 About this script Please note that this is not a word for word transcript of the programme as broadcast. In the recording and editing process, changes

More information

Instructions to Authors

Instructions to Authors Instructions to Authors European Journal of Psychological Assessment Hogrefe Publishing GmbH Merkelstr. 3 37085 Göttingen Germany Tel. +49 551 999 50 0 Fax +49 551 999 50 111 publishing@hogrefe.com www.hogrefe.com

More information

Backside Circuit Edit on Full-Thickness Silicon Devices

Backside Circuit Edit on Full-Thickness Silicon Devices Backside Circuit Edit on Full-Thickness Silicon Devices Presentation Title Line 1 Title Line Two Can I really skip the global thinning step?! Date Presenter Name Chad Rue FEI Company, Hillsboro, OR, USA

More information

Take a Break, Bach! Let Machine Learning Harmonize That Chorale For You. Chris Lewis Stanford University

Take a Break, Bach! Let Machine Learning Harmonize That Chorale For You. Chris Lewis Stanford University Take a Break, Bach! Let Machine Learning Harmonize That Chorale For You Chris Lewis Stanford University cmslewis@stanford.edu Abstract In this project, I explore the effectiveness of the Naive Bayes Classifier

More information

NVLAP LAB CODE LM Test Report. For. LIGHT EFFICIENT DESIGN (Brand Name:N/A) 188 S. Northwest Highway Cary, IL

NVLAP LAB CODE LM Test Report. For. LIGHT EFFICIENT DESIGN (Brand Name:N/A) 188 S. Northwest Highway Cary, IL LM-79-08 Test Report For LIGHT EFFICIENT DESIGN (Brand Name:N/A) 188 S. Northwest Highway Cary, IL 60013 LED Lamp Model name(s): LED-8087E40-A LED-8087M40-A Remark : The suffix of the model name E stand

More information

Indexing local features and instance recognition

Indexing local features and instance recognition Indexing local features and instance recognition May 14 th, 2015 Yong Jae Lee UC Davis Announcements PS2 due Saturday 11:59 am 2 Approximating the Laplacian We can approximate the Laplacian with a difference

More information

NVLAP LAB CODE LM Test Report. For. LIGHT EFFICIENT DESIGN (Brand Name:N/A) 188 S. Northwest Highway Cary, IL

NVLAP LAB CODE LM Test Report. For. LIGHT EFFICIENT DESIGN (Brand Name:N/A) 188 S. Northwest Highway Cary, IL LM-79-08 Test Report For LIGHT EFFICIENT DESIGN (Brand Name:N/A) 188 S. Northwest Highway Cary, IL 60013 LED Lamp Model name(s): LED-8087E57C-A LED-8087M57C-A Remark : The suffix of the model name E stand

More information

Optimization of Multi-Channel BCH Error Decoding for Common Cases. Russell Dill Master's Thesis Defense April 20, 2015

Optimization of Multi-Channel BCH Error Decoding for Common Cases. Russell Dill Master's Thesis Defense April 20, 2015 Optimization of Multi-Channel BCH Error Decoding for Common Cases Russell Dill Master's Thesis Defense April 20, 2015 Bose-Chaudhuri-Hocquenghem (BCH) BCH is an Error Correcting Code (ECC) and is used

More information

EDITING COMPUTER ANIMATION BY COMPUTER. TOM BRITTON Un i versi ty of Western ontario London, Ontario ABSTRACT

EDITING COMPUTER ANIMATION BY COMPUTER. TOM BRITTON Un i versi ty of Western ontario London, Ontario ABSTRACT 21.1 EDITING COMPUTER ANIMATION BY COMPUTER TOM BRITTON Un i versi ty of Western ontario London, Ontario ABSTRACT The use of a computer for the production of film animation seems to be gaini ng popularity.

More information

Lesson 9 - When and Where Do You Want to Go?

Lesson 9 - When and Where Do You Want to Go? Alright Now that we've got a hold on time words, it's time to get moving with a few action words! Let's talk about where we want to go and when. Use this lesson to learn how to: - Say when you want to

More information

Listen to the following text and repeat out loud after each sentence. Pay particular attention to the sounds ou: nous bonjour.

Listen to the following text and repeat out loud after each sentence. Pay particular attention to the sounds ou: nous bonjour. > Bonjour, ça va? Hello, how are you? Ça va bien, merci, et vous? Fine, thank you, and yourself? 'ou' et 'ille' pronunciation practice qu'est-ce que...? what...? c'est... this is / it's il y a... there

More information

50 Gb/s per lane MMF objectives. IEEE 50G & NGOATH Study Group January 2016, Atlanta, GA Jonathan King, Finisar

50 Gb/s per lane MMF objectives. IEEE 50G & NGOATH Study Group January 2016, Atlanta, GA Jonathan King, Finisar 50 Gb/s per lane MMF objectives IEEE 50G & NGOATH Study Group January 2016, Atlanta, GA Jonathan King, Finisar 1 Introduction Contents Overview of technology options for 50 Gb/s per lane over MMF, and

More information

10GBASE-R Test Patterns

10GBASE-R Test Patterns John Ewen jfewen@us.ibm.com Test Pattern Want to evaluate pathological events that occur on average once per day At 1Gb/s once per day is equivalent to a probability of 1.1 1 15 ~ 1/2 5 Equivalent to 7.9σ

More information

AUTOMATIC ACCOMPANIMENT OF VOCAL MELODIES IN THE CONTEXT OF POPULAR MUSIC

AUTOMATIC ACCOMPANIMENT OF VOCAL MELODIES IN THE CONTEXT OF POPULAR MUSIC AUTOMATIC ACCOMPANIMENT OF VOCAL MELODIES IN THE CONTEXT OF POPULAR MUSIC A Thesis Presented to The Academic Faculty by Xiang Cao In Partial Fulfillment of the Requirements for the Degree Master of Science

More information

Computer Assisted Melo-rhythmic Generation of Traditional Chinese Music from Ink Brush Calligraphy

Computer Assisted Melo-rhythmic Generation of Traditional Chinese Music from Ink Brush Calligraphy Computer Assisted Melo-rhythmic Generation of Traditional Chinese Music from Ink Brush Calligraphy Will W. W. Tang, Stephen Chan, Grace Ngai and Hong-va Leong Department of Computing, The Hong Kong Polytechnic

More information

Common assumptions in color characterization of projectors

Common assumptions in color characterization of projectors Common assumptions in color characterization of projectors Arne Magnus Bakke 1, Jean-Baptiste Thomas 12, and Jérémie Gerhardt 3 1 Gjøvik university College, The Norwegian color research laboratory, Gjøvik,

More information

Story Tracking in Video News Broadcasts. Ph.D. Dissertation Jedrzej Miadowicz June 4, 2004

Story Tracking in Video News Broadcasts. Ph.D. Dissertation Jedrzej Miadowicz June 4, 2004 Story Tracking in Video News Broadcasts Ph.D. Dissertation Jedrzej Miadowicz June 4, 2004 Acknowledgements Motivation Modern world is awash in information Coming from multiple sources Around the clock

More information

Connectionist Language Processing. Lecture 12: Modeling the Electrophysiology of Language II

Connectionist Language Processing. Lecture 12: Modeling the Electrophysiology of Language II Connectionist Language Processing Lecture 12: Modeling the Electrophysiology of Language II Matthew W. Crocker crocker@coli.uni-sb.de Harm Brouwer brouwer@coli.uni-sb.de Event-Related Potentials (ERPs)

More information

Tamar Sovran Scientific work 1. The study of meaning My work focuses on the study of meaning and meaning relations. I am interested in the duality of

Tamar Sovran Scientific work 1. The study of meaning My work focuses on the study of meaning and meaning relations. I am interested in the duality of Tamar Sovran Scientific work 1. The study of meaning My work focuses on the study of meaning and meaning relations. I am interested in the duality of language: its precision as revealed in logic and science,

More information

Life%with%a%French%Twist%

Life%with%a%French%Twist% !! LifewithaFrenchTwist 7!immersion!experiences! France!is!closer!than!you!think!!! FindFrancewhereveryouare! Uptothechallenge? With living in a non5french speaking country, the chances of beingimmersedinthefrenchcultureandbeingexposedtothe

More information

Preparing for remote data collection at NE-CAT

Preparing for remote data collection at NE-CAT Preparing for remote data collection at NE-CAT Important Note: The beamtime and remote login privileges are intended just for you and your group. You are not allowed to share these with any other person

More information

US_Math 4 1. Operations and Algebraic Thinking 4.OA 2. Number and Operations in Base Ten 4.NBT 3. Number and Operations - Fractions 4.

US_Math 4 1. Operations and Algebraic Thinking 4.OA 2. Number and Operations in Base Ten 4.NBT 3. Number and Operations - Fractions 4. US_Math 4 1. Operations and Algebraic Thinking 4.OA 1.1 Multiplication of Whole Numbers 4.OA 1.2 Division of Whole Numbers 4.OA 1.3 Factors and Multiples 4.OA 2. Number and Operations in Base Ten 4.NBT

More information

Introduction to NLP. Ruihong Huang Texas A&M University. Some slides adapted from slides by Dan Jurafsky, Luke Zettlemoyer, Ellen Riloff

Introduction to NLP. Ruihong Huang Texas A&M University. Some slides adapted from slides by Dan Jurafsky, Luke Zettlemoyer, Ellen Riloff Introduction to NLP Ruihong Huang Texas A&M University Some slides adapted from slides by Dan Jurafsky, Luke Zettlemoyer, Ellen Riloff "An Aggie does not lie, cheat, or steal or tolerate those who do."

More information

Normalization Methods for Two-Color Microarray Data

Normalization Methods for Two-Color Microarray Data Normalization Methods for Two-Color Microarray Data 1/13/2009 Copyright 2009 Dan Nettleton What is Normalization? Normalization describes the process of removing (or minimizing) non-biological variation

More information

Blueline, Linefree, Accuracy Ratio, & Moving Absolute Mean Ratio Charts

Blueline, Linefree, Accuracy Ratio, & Moving Absolute Mean Ratio Charts INTRODUCTION This instruction manual describes for users of the Excel Standard Celeration Template(s) the features of each page or worksheet in the template, allowing the user to set up and generate charts

More information

Automatic Compositor Attribution in the First Folio of Shakespeare

Automatic Compositor Attribution in the First Folio of Shakespeare Automatic Compositor Attribution in the First Folio of Shakespeare Maria Ryskina Hannah Alpert-Abrams Dan Garrette Taylor Berg-Kirkpatrick Language Technologies Institute, Carnegie Mellon University, {mryskina,tberg}@cs.cmu.edu

More information

NVLAP LAB CODE LM Test Report. For GREEN INOVA LIGHTING TECHNOLOGY (SHENZHEN) LTD. (Brand Name: GI LED LIGHTING)

NVLAP LAB CODE LM Test Report. For GREEN INOVA LIGHTING TECHNOLOGY (SHENZHEN) LTD. (Brand Name: GI LED LIGHTING) LM-79-08 Test Report For GREEN INOVA LIGHTING TECHNOLOGY (SHENZHEN) LTD (Brand Name: GI LED LIGHTING) 4th floor, building 2, Zone 2, Hong Hua Ling Industrial Park, Liu xian Block,Nan Shan District, Shenzhen,

More information

NVLAP LAB CODE LM Test Report. For LED PANEL LIGHTING CO.,LTD. (Brand Name: N/A)

NVLAP LAB CODE LM Test Report. For LED PANEL LIGHTING CO.,LTD. (Brand Name: N/A) LM-79-08 Test Report For LED PANEL LIGHTING CO.,LTD. (Brand Name: N/A) 7 F,Jinchangda Industrial Park,zhangkengjing,GuanLan, Baoao,Shenzhen,Guangdong,China 2x4 Luminaires for Ambient Lighting of Interior

More information

DECORATIVE HOME FURNISHING FABRICS

DECORATIVE HOME FURNISHING FABRICS BARROW INDUSTRIES DECORATIVE HOME FURNISHING FABRICS Gallery of Wovens By Merrimac Textiles Decorative Home Furnishing Fabrics BARROW INDUSTRIES Executive Offices: 3 Edgewater Drive Norwood, MA 02062 Distribution

More information

NVLAP LAB CODE LM Test Report. For CE INNOVATIONS LTD. (Brand Name: IRICO) 911 Denison St Markham, ON L3R 3K4 Canada

NVLAP LAB CODE LM Test Report. For CE INNOVATIONS LTD. (Brand Name: IRICO) 911 Denison St Markham, ON L3R 3K4 Canada LM-79-08 Test Report For CE INNOVATIONS LTD (Brand Name: IRICO) 911 Denison St Markham, ON L3R 3K4 Canada 2x4 Luminaires for Ambient Lighting of Interior Commercial Spaces Model name(s): IR-P7-50W2B45500LM

More information

Why t? TEACHER NOTES MATH NSPIRED. Math Objectives. Vocabulary. About the Lesson

Why t? TEACHER NOTES MATH NSPIRED. Math Objectives. Vocabulary. About the Lesson Math Objectives Students will recognize that when the population standard deviation is unknown, it must be estimated from the sample in order to calculate a standardized test statistic. Students will recognize

More information

The ACL Anthology Network Corpus. University of Michigan

The ACL Anthology Network Corpus. University of Michigan The ACL Anthology Corpus Dragomir R. Radev 1,2, Pradeep Muthukrishnan 1, Vahed Qazvinian 1 1 Department of Electrical Engineering and Computer Science 2 School of Information University of Michigan {radev,mpradeep,vahed}@umich.edu

More information

Journal of Field Robotics. Instructions to Authors

Journal of Field Robotics. Instructions to Authors Journal of Field Robotics Instructions to Authors Manuscripts submitted to the Journal of Field Robotics should describe work that has both practical and theoretical significance. Authors must clearly

More information

LED Floodlight RoHS. Model: inner box: L273*W240*H165mm master carton: L549*W485*H175mm 4PCS

LED Floodlight RoHS. Model: inner box: L273*W240*H165mm master carton: L549*W485*H175mm 4PCS 71346 LED Floodlight RoHS OVERALL LAMP PARAMETERS LED DRIVER LED Model: Input Voltage Input Current Input Power Power Factor Luminance Luminous Efficiency CRI Beam Angle Main Structure Output Voltage Output

More information

Exploring Architecture Parameters for Dual-Output LUT based FPGAs

Exploring Architecture Parameters for Dual-Output LUT based FPGAs Exploring Architecture Parameters for Dual-Output LUT based FPGAs Zhenghong Jiang, Colin Yu Lin, Liqun Yang, Fei Wang and Haigang Yang System on Programmable Chip Research Department, Institute of Electronics,

More information

A a I i. Write. Name. Building with Dad. Handwriting Letters A,a and I,i: Words with a and i 401

A a I i. Write. Name. Building with Dad. Handwriting Letters A,a and I,i: Words with a and i 401 Write A a I i cat pig Directions Have children write a row of each letter and then write the words. Home Activity Ask your child to write each letter and tell you how to make the letter. Handwriting Letters

More information

How to Optimize Ad-Detective

How to Optimize Ad-Detective How to Optimize Ad-Detective Ad-Detective technology is based upon black level detection. There are several important criteria to consider: 1. Does the video have black frames to detect? Are there any

More information

Introduction to NLP. Ruihong Huang Texas A&M University. Some slides adapted from slides by Dan Jurafsky, Luke Zettlemoyer, Ellen Riloff

Introduction to NLP. Ruihong Huang Texas A&M University. Some slides adapted from slides by Dan Jurafsky, Luke Zettlemoyer, Ellen Riloff Introduction to NLP Ruihong Huang Texas A&M University Some slides adapted from slides by Dan Jurafsky, Luke Zettlemoyer, Ellen Riloff "An Aggie does not lie, cheat, or steal or tolerate those who do."

More information

HD Review March 30, 2011 Franz Klein

HD Review March 30, 2011 Franz Klein HD Review March 30, 2011 Franz Klein !! Circularly & linearly polarized photon beam on longitudinally polarized target Circularly polar. photon via helicity transfer from 92 calendar days Linearly polar.

More information

STRING QUARTET CLASSIFICATION WITH MONOPHONIC MODELS

STRING QUARTET CLASSIFICATION WITH MONOPHONIC MODELS STRING QUARTET CLASSIFICATION WITH MONOPHONIC Ruben Hillewaere and Bernard Manderick Computational Modeling Lab Department of Computing Vrije Universiteit Brussel Brussels, Belgium {rhillewa,bmanderi}@vub.ac.be

More information

Automatic Polyphonic Music Composition Using the EMILE and ABL Grammar Inductors *

Automatic Polyphonic Music Composition Using the EMILE and ABL Grammar Inductors * Automatic Polyphonic Music Composition Using the EMILE and ABL Grammar Inductors * David Ortega-Pacheco and Hiram Calvo Centro de Investigación en Computación, Instituto Politécnico Nacional, Av. Juan

More information

Instructions to the Authors

Instructions to the Authors Instructions to the Authors Editorial Policy The International Journal of Case Method Research and Application (IJCRA) solicits and welcomes research across the entire range of topics encompassing the

More information

NVLAP LAB CODE LM Test Report. For DONGGUAN THAILIGHT SEMICONDCTOR LIGHTING CO.,LTD

NVLAP LAB CODE LM Test Report. For DONGGUAN THAILIGHT SEMICONDCTOR LIGHTING CO.,LTD LM-79-08 Test Report For DONGGUAN THAILIGHT SEMICONDCTOR LIGHTING CO.,LTD (Brand Name: THAILIGHT) Sanhui Ind. Area, Cunwei, Hengli, Dongguan, China. Architectural Flood and Spot Luminaires Model name(s):

More information

What is music as a cognitive ability?

What is music as a cognitive ability? What is music as a cognitive ability? The musical intuitions, conscious and unconscious, of a listener who is experienced in a musical idiom. Ability to organize and make coherent the surface patterns

More information

Supervision of Analogue Signal Paths in Legacy Media Migration Processes using Digital Signal Processing

Supervision of Analogue Signal Paths in Legacy Media Migration Processes using Digital Signal Processing Welcome Supervision of Analogue Signal Paths in Legacy Media Migration Processes using Digital Signal Processing Jörg Houpert Cube-Tec International Oslo, Norway 4th May, 2010 Joint Technical Symposium

More information

3DTV: Technical Challenges for Realistic Experiences

3DTV: Technical Challenges for Realistic Experiences Yo-Sung Ho: Biographical Sketch 3DTV: Technical Challenges for Realistic Experiences November 04 th, 2010 Prof. Yo-Sung Ho Gwangju Institute of Science and Technology 1977~1983 Seoul National University

More information

Less is More: Picking Informative Frames for Video Captioning

Less is More: Picking Informative Frames for Video Captioning Less is More: Picking Informative Frames for Video Captioning ECCV 2018 Yangyu Chen 1, Shuhui Wang 2, Weigang Zhang 3 and Qingming Huang 1,2 1 University of Chinese Academy of Science, Beijing, 100049,

More information

Language and Mind Prof. Rajesh Kumar Department of Humanities and Social Sciences Indian Institute of Technology, Madras

Language and Mind Prof. Rajesh Kumar Department of Humanities and Social Sciences Indian Institute of Technology, Madras Language and Mind Prof. Rajesh Kumar Department of Humanities and Social Sciences Indian Institute of Technology, Madras Module - 07 Lecture - 32 Sentence CP in Subjects and Object Positions Let us look

More information

INTERNATIONAL CONFERENCE ON ENGINEERING DESIGN ICED 05 MELBOURNE, AUGUST 15-18, 2005 GENERAL DESIGN THEORY AND GENETIC EPISTEMOLOGY

INTERNATIONAL CONFERENCE ON ENGINEERING DESIGN ICED 05 MELBOURNE, AUGUST 15-18, 2005 GENERAL DESIGN THEORY AND GENETIC EPISTEMOLOGY INTERNATIONAL CONFERENCE ON ENGINEERING DESIGN ICED 05 MELBOURNE, AUGUST 15-18, 2005 GENERAL DESIGN THEORY AND GENETIC EPISTEMOLOGY Mizuho Mishima Makoto Kikuchi Keywords: general design theory, genetic

More information

Sentence Processing III. LIGN 170, Lecture 8

Sentence Processing III. LIGN 170, Lecture 8 Sentence Processing III LIGN 170, Lecture 8 Syntactic ambiguity Bob weighed three hundred and fifty pounds of grapes. The cotton shirts are made from comes from Arizona. The horse raced past the barn fell.

More information

GENERAL WRITING FORMAT

GENERAL WRITING FORMAT GENERAL WRITING FORMAT The doctoral dissertation should be written in a uniform and coherent manner. Below is the guideline for the standard format of a doctoral research paper: I. General Presentation

More information

Scan. This is a sample of the first 15 pages of the Scan chapter.

Scan. This is a sample of the first 15 pages of the Scan chapter. Scan This is a sample of the first 15 pages of the Scan chapter. Note: The book is NOT Pinted in color. Objectives: This section provides: An overview of Scan An introduction to Test Sequences and Test

More information

Introduction to NLP. What is Natural Language Processing?

Introduction to NLP. What is Natural Language Processing? Introduction to NLP What is Natural Language Processing? Ques%on Answering: IBM s Watson Won Jeopardy on February 16, 2011! WILLIAM WILKINSON S AN ACCOUNT OF THE PRINCIPALITIES OF WALLACHIA AND MOLDOVIA

More information

. _ FOR IMMEDIATE RELEASE JANUARY 23, 1970 OFFICE OF THE WHITE HOUSE PRESS SECRETARY THE WHITE HOUSE

. _ FOR IMMEDIATE RELEASE JANUARY 23, 1970 OFFICE OF THE WHITE HOUSE PRESS SECRETARY THE WHITE HOUSE . _ FOR IMMEDIATE RELEASE JANUARY 23, 1970 OFFICE OF THE WHITE HOUSE PRESS SECRETARY THE WHITE HOUSE PRESS CONFERENCE OF PETER M. FLANIGAN, ASSISTANT TO THE PRESIDENT, AND CLAY T. WHITEHEAD, STAFF ASSISTANT

More information

Solid State Lighting Annex: Product Quality and Performance Tiers

Solid State Lighting Annex: Product Quality and Performance Tiers Solid State Lighting Annex: Product Quality and Performance Tiers DIRECTIONAL LAMPS Energy Efficient End-use Equipment (4E) International Energy Agency NOVEMBER 2016 Performance Tiers Proposed by Governments

More information

THE STRATHMORE LAW REVIEW EDITORIAL POLICY AND STYLE GUIDE

THE STRATHMORE LAW REVIEW EDITORIAL POLICY AND STYLE GUIDE THE STRATHMORE LAW REVIEW EDITORIAL POLICY AND STYLE GUIDE Submissions to the Strathmore Law Review The Strathmore Law Review is an annual peer-reviewed, student-edited academic law journal published by

More information

Conditional Probability and Bayes

Conditional Probability and Bayes Conditional Probability and Bayes Chapter 2 Lecture 7 Yiren Ding Shanghai Qibao Dwight High School March 15, 2016 Yiren Ding Conditional Probability and Bayes 1 / 20 Outline 1 Bayes Theorem 2 Application

More information

Measuring Radio Network Performance

Measuring Radio Network Performance Measuring Radio Network Performance Gunnar Heikkilä AWARE Advanced Wireless Algorithm Research & Experiments Radio Network Performance, Ericsson Research EN/FAD 109 0015 Düsseldorf (outside) Düsseldorf

More information

EE241 - Spring 2005 Advanced Digital Integrated Circuits

EE241 - Spring 2005 Advanced Digital Integrated Circuits EE241 - Spring 2005 Advanced Digital Integrated Circuits Lecture 21: Asynchronous Design Synchronization Clock Distribution Self-Timed Pipelined Datapath Req Ack HS Req Ack HS Req Ack HS Req Ack Start

More information

Formalizing Irony with Doxastic Logic

Formalizing Irony with Doxastic Logic Formalizing Irony with Doxastic Logic WANG ZHONGQUAN National University of Singapore April 22, 2015 1 Introduction Verbal irony is a fundamental rhetoric device in human communication. It is often characterized

More information

Regression Model for Politeness Estimation Trained on Examples

Regression Model for Politeness Estimation Trained on Examples Regression Model for Politeness Estimation Trained on Examples Mikhail Alexandrov 1, Natalia Ponomareva 2, Xavier Blanco 1 1 Universidad Autonoma de Barcelona, Spain 2 University of Wolverhampton, UK Email:

More information

Advanced Devices. Registers Counters Multiplexers Decoders Adders. CSC258 Lecture Slides Steve Engels, 2006 Slide 1 of 20

Advanced Devices. Registers Counters Multiplexers Decoders Adders. CSC258 Lecture Slides Steve Engels, 2006 Slide 1 of 20 Advanced Devices Using a combination of gates and flip-flops, we can construct more sophisticated logical devices. These devices, while more complex, are still considered fundamental to basic logic design.

More information

Advanced Coding and Modulation Schemes for Broadband Satellite Services. Commercial Requirements

Advanced Coding and Modulation Schemes for Broadband Satellite Services. Commercial Requirements Advanced Coding and Modulation Schemes for Broadband Satellite Services Commercial Requirements DVB Document A082 July 2004 Advanced Coding and Modulation Schemes for Broadband Satellite Services Commercial

More information

Registers and Counters

Registers and Counters Registers and Counters ( 范倫達 ), Ph. D. Department of Computer Science National Chiao Tung University Taiwan, R.O.C. Fall, 2011 ldvan@cs.nctu.edu.tw http://www.cs.nctu.edu.tw/~ldvan/ Registers Shift Registers

More information

Digital Video Cassette Recorder DNW-75

Digital Video Cassette Recorder DNW-75 NTSC TM Digital Video Cassette Recorder The Digital Video Cassette Recorder In the relatively short time since its launch, Betacam SX has provided broadcasters and production companies with superb picture

More information

Fieldbus Testing with Online Physical Layer Diagnostics

Fieldbus Testing with Online Physical Layer Diagnostics Technical White Paper Fieldbus Testing with Online Physical Layer Diagnostics The significant benefits realized by the latest fully automated fieldbus construction & pre-commissioning hardware, software

More information

TRACKING THE ODD : METER INFERENCE IN A CULTURALLY DIVERSE MUSIC CORPUS

TRACKING THE ODD : METER INFERENCE IN A CULTURALLY DIVERSE MUSIC CORPUS TRACKING THE ODD : METER INFERENCE IN A CULTURALLY DIVERSE MUSIC CORPUS Andre Holzapfel New York University Abu Dhabi andre@rhythmos.org Florian Krebs Johannes Kepler University Florian.Krebs@jku.at Ajay

More information

COMP 249 Advanced Distributed Systems Multimedia Networking. Video Compression Standards

COMP 249 Advanced Distributed Systems Multimedia Networking. Video Compression Standards COMP 9 Advanced Distributed Systems Multimedia Networking Video Compression Standards Kevin Jeffay Department of Computer Science University of North Carolina at Chapel Hill jeffay@cs.unc.edu September,

More information

AutoChorale An Automatic Music Generator. Jack Mi, Zhengtao Jin

AutoChorale An Automatic Music Generator. Jack Mi, Zhengtao Jin AutoChorale An Automatic Music Generator Jack Mi, Zhengtao Jin 1 Introduction Music is a fascinating form of human expression based on a complex system. Being able to automatically compose music that both

More information

Switching Solutions for Multi-Channel High Speed Serial Port Testing

Switching Solutions for Multi-Channel High Speed Serial Port Testing Switching Solutions for Multi-Channel High Speed Serial Port Testing Application Note by Robert Waldeck VP Business Development, ASCOR Switching The instruments used in High Speed Serial Port testing are

More information