Projective Dependency Parsing with Perceptron

Size: px
Start display at page:

Download "Projective Dependency Parsing with Perceptron"

Transcription

1 Projective Dependency Parsing with Perceptron Xavier Carreras, Mihai Surdeanu, and Lluís Màrquez Technical University of Catalonia 8th June 2006

2 Outline Introduction Parsing and Learning Parsing Model Parsing Algorithm Global Perceptron Learning Algorithm Features Experiments and Results Results Discussion

3 Outline Introduction Parsing and Learning Parsing Model Parsing Algorithm Global Perceptron Learning Algorithm Features Experiments and Results Results Discussion

4 Introduction Motivation Blind treatment of multilingual data Use well-known components Our Dependency Parsing Learning Architecture: Eisner dep-parsing algorithm, for projective structures Perceptron learning algorithm, run globally Features: state-of-the-art, with some new ones In CoNLL-X data, we achieve moderate performance: of overall labeled attachment score 10th position in the ranking

5 Outline Introduction Parsing and Learning Parsing Model Parsing Algorithm Global Perceptron Learning Algorithm Features Experiments and Results Results Discussion

6 Parsing Model A dependency tree is decomposed into labeled dependencies, each of the form [h, m, l] where : h is the position of the head word m is the position of the modifier word l is the label of the dependency Given a sentence x the parser computes: dparser(x, w) = arg max score(x, y, w) y Y(x) = arg max score([h, m, l], x, y, w) y Y(x) [h,m,l] y = arg max w l φ([h, m], x, y) y Y(x) [h,m,l] y w = (w 1,..., w l,..., w L ) is the learned weight vector φ is the feature extraction function, given a priori

7 The Parsing Algorithm of Eisner (1996) Assumes that dependency structures are projective; in CoNLL data, this only holds for Chinese Bottom-up dynamic programming algorithm In a given span from word s to word e : 1. Look for the optimal point giving internal structures: s r r+1 e 2. Look for the best label to connect the structures:??

8 The Parsing Algorithm of Eisner (1996) (II) A third step assembles two dependency structures without using learning s r r e s r e

9 Perceptron Learning Global Perceptron (Collins 2002): trains the weight vector dependently of the parsing algorithm. A very simple online learning algorithm: it corrects the mistakes seen after a training sentence is parsed. w = 0 for t = 1 to T foreach training example (x, y) do ŷ = dparser(x, w) foreach [h, m, l] y \ŷ do /* missed deps */ w l = w l + φ(h, m, x, ŷ) foreach [h, m, l] ŷ \y do /* over-predicted deps */ w l = w l φ(h, m, x, ŷ) return w

10 Outline Introduction Parsing and Learning Parsing Model Parsing Algorithm Global Perceptron Learning Algorithm Features Experiments and Results Results Discussion

11 Feature Extraction Function φ(h, m, x, y): represents in a feature vector a dependency from word positions m to h, in the context of a sentence x and a dependency tree y φ(h, m, x, y) = φ token (x, h, head ) + φ tctx (x, h, head ) + φ token (x, m, mod ) + φ tctx (x, m, mod ) + φ dep (x, mm h,m, d h,m ) + φ dctx (x, mm h,m, d h,m ) + φ dist (x, mm h,m, d h,m ) + φ runtime (x, y, h, m, d h,m ) where mm h,m is a shorthand for the tuple min(h, m), max(h, m) d h,m indicates the direction of the dependency

12 Context-Independent Token Features Represent a token i type indicates the type of token being represented, i.e. head or mod Novel features are in red. φ token (x, i, type) type word(x i ) type lemma(x i ) type cpos(x i ) type fpos(x i ) foreach f morphosynt(x i ) : type f type word(x i ) cpos(x i ) foreach f morphosynt(x i ) : type word(x i ) f

13 Context-Dependent Token Features Represent the context of a token x i The function extracts token features of surrounding tokens It also conjoins some selected features along the window φ tctx (x, i, type) φ token (x, i 1, type string( 1)) φ token (x, i 2, type string( 2)) φ token (x, i + 1, type string( 1)) φ token (x, i + 2, type string( 2)) type cpos(x i ) cpos(x i 1 ) type cpos(x i ) cpos(x i 1 ) cpos(x i 2 ) type cpos(x i ) cpos(x i+1 ) type cpos(x i ) cpos(x i+1 ) cpos(x i+2 )

14 Context-Independent Dependency Features Features of the two tokens involved in a dependency relation dir indicates whether the relation is left-to-right or right-to-left φ dep (x, i, j, dir) dir word(x i ) cpos(x i ) word(x j ) cpos(x j ) dir cpos(x i ) word(x j ) cpos(x j ) dir word(x i ) word(x j ) cpos(x j ) dir word(x i ) cpos(x i ) cpos(x j ) dir word(x i ) cpos(x i ) word(x j ) dir word(x i ) word(x j ) dir cpos(x i ) cpos(x j )

15 Context-Dependent Dependency Features Capture the context of the two tokens involved in a relation dir indicates whether the relation is left-to-right or right-to-left φ dctx (x, i, j, dir) dir cpos(x i ) cpos(x i+1 ) cpos(x j 1 ) cpos(x j ) dir cpos(x i 1 ) cpos(x i ) cpos(x j 1 ) cpos(x j ) dir cpos(x i ) cpos(x i+1 ) cpos(x j ) cpos(x j+1 ) dir cpos(x i 1 ) cpos(x i ) cpos(x j ) cpos(x j+1 )

16 Surface Distance Features Features on the surface tokens found within a dependency relation Numeric features are discretized using binning to a small number of intervals φ dist (x, i, j, dir) foreach(k (i, j)): dir cpos(x i ) cpos(x k ) cpos(x j ) number of tokens between i and j number of verbs between i and j number of coordinations between i and j number of punctuations signs between i and j

17 Runtime Features Capture the labels of the dependencies that attach to the head word This information is available in the dynamic programming matrix of the parsing algorithm? h m l 1 l 2 l φ runtime (x, y, h, m, dir) foreach i, 1 i S : dir cpos(x h ) cpos(x m ) l i dir cpos(x h ) cpos(x m ) l 1 dir cpos(x h ) cpos(x m ) l 1 l 2 dir cpos(x h ) cpos(x m ) l 1 l 2 l 3 dir cpos(x h ) cpos(x m ) l 1 l 2 l 3 l 4 3 l... S

18 Outline Introduction Parsing and Learning Parsing Model Parsing Algorithm Global Perceptron Learning Algorithm Features Experiments and Results Results Discussion

19 Results GOLD UAS LAS Japanese Chinese Portuguese Bulgarian German Danish Swedish Spanish Czech Slovene Dutch Arabic Turkish Overall

20 Feature Analysis φ token +φ dep +φ tctx +φ dist +φ runtime +φ dctx Japanese Portuguese Spanish Turkish This table shows LAS at increasing feature configurations All families of feature patterns help significantly

21 Errors Caused by 4 Factors 1. Size of training sets: accuracy below 70% for languages with small training sets: Turkish, Arabic, and Slovene. 2. Modeling large distance dependencies: our distance features (φ dist ) are insufficient to model well large-distance dependencies: to root >= 7 Spanish Portuguese Modeling context: our context features (φ dctx, φ tctx, and φ runtime ) do not capture complex dependencies. Top 5 focus words with most errors: Spanish: y, de, a, en, and que Portuguese: em, de, a, e, and para 4. Projectivity assumption: Dutch is the language with most crossing dependencies in this evaluation, and the accuracy we obtain is below 70%.

22 Thanks!

Agenda for today. Homework questions, issues? Non-projective dependencies Spanning tree algorithm for non-projective parsing

Agenda for today. Homework questions, issues? Non-projective dependencies Spanning tree algorithm for non-projective parsing Agenda for today Homework questions, issues? Non-projective dependencies Spanning tree algorithm for non-projective parsing 1 Projective vs non-projective dependencies If we extract dependencies from trees,

More information

CS395T Project 2: Shift-Reduce Parsing

CS395T Project 2: Shift-Reduce Parsing CS395T Project 2: Shift-Reduce Parsing Due date: Tuesday, October 17 at 9:30am In this project you ll implement a shift-reduce parser. First you ll implement a greedy model, then you ll extend that model

More information

Dynamic Feature Selection for Dependency Parsing

Dynamic Feature Selection for Dependency Parsing Dynamic Feature Selection for Dependency Parsing He He, Hal Daumé III and Jason Eisner EMNLP 2013, Seattle Structured Prediction in NLP Part-of-Speech Tagging Parsing N N V Det N Fruit flies like a banana

More information

Collins and Eisner s algorithms

Collins and Eisner s algorithms Collins and Eisner s algorithms Syntactic analysis (5LN455) 2015-12-14 Sara Stymne Department of Linguistics and Philology Based on slides from Marco Kuhlmann Recap: Dependency trees dobj subj det pmod

More information

<Insert Picture Here> Oracle Policy Automation 10.0 Features and Benefits

<Insert Picture Here> Oracle Policy Automation 10.0 Features and Benefits Oracle Policy Automation 10.0 Features and Benefits December 2009 The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Graph-Based Parsing. Miguel Ballesteros. Algorithms for NLP Course. 7-11

Graph-Based Parsing. Miguel Ballesteros. Algorithms for NLP Course. 7-11 Graph-Based Parsing Miguel Ballesteros Algorithms for NLP Course. 7-11 By using some Joakim Nivre's materials from Uppsala University and Jason Eisner's material from Johns Hopkins University. Outline

More information

Density-Driven Cross-Lingual Transfer of Dependency Parsers

Density-Driven Cross-Lingual Transfer of Dependency Parsers Density-Driven Cross-Lingual Transfer of Dependency Parsers Mohammad Sadegh Rasooli Michael Collins rasooli@cs.columbia.edu Presented by Owen Rambow EMNLP 2015 Motivation Availability of treebanks Accurate

More information

Dependency grammar and dependency parsing

Dependency grammar and dependency parsing Dependency grammar and dependency parsing Syntactic analysis (5LN455) 2015-12-09 Sara Stymne Department of Linguistics and Philology Based on slides from Marco Kuhlmann Activities - dependency parsing

More information

Incremental Integer Linear Programming for Non-projective Dependency Parsing

Incremental Integer Linear Programming for Non-projective Dependency Parsing Incremental Integer Linear Programming for Non-projective Dependency Parsing Sebastian Riedel James Clarke ICCS, University of Edinburgh 22. July 2006 EMNLP 2006 S. Riedel, J. Clarke (ICCS, Edinburgh)

More information

Parsing with Dynamic Programming

Parsing with Dynamic Programming CS11-747 Neural Networks for NLP Parsing with Dynamic Programming Graham Neubig Site https://phontron.com/class/nn4nlp2017/ Two Types of Linguistic Structure Dependency: focus on relations between words

More information

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Summary This document outlines the necessary steps for transferring your Norman Endpoint Protection product to Avast

More information

Dependency grammar and dependency parsing

Dependency grammar and dependency parsing Dependency grammar and dependency parsing Syntactic analysis (5LN455) 2014-12-10 Sara Stymne Department of Linguistics and Philology Based on slides from Marco Kuhlmann Mid-course evaluation Mostly positive

More information

Dependency grammar and dependency parsing

Dependency grammar and dependency parsing Dependency grammar and dependency parsing Syntactic analysis (5LN455) 2016-12-05 Sara Stymne Department of Linguistics and Philology Based on slides from Marco Kuhlmann Activities - dependency parsing

More information

www.locwaydtp.com locway@locwaydtp.com We are and this is our Company Presentation Brief About Us LocWay is a localization company focused on projects coordination, Translation and Desktop Publishing (DTP)

More information

Intel USB 3.0 extensible Host Controller Driver

Intel USB 3.0 extensible Host Controller Driver Intel USB 3.0 extensible Host Controller Driver Release Notes (5.0.4.43) Unified driver September 2018 Revision 1.2 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE,

More information

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Summary This document outlines the necessary steps for transferring your Norman Endpoint Protection product to Avast

More information

The Perceptron. Simon Šuster, University of Groningen. Course Learning from data November 18, 2013

The Perceptron. Simon Šuster, University of Groningen. Course Learning from data November 18, 2013 The Perceptron Simon Šuster, University of Groningen Course Learning from data November 18, 2013 References Hal Daumé III: A Course in Machine Learning http://ciml.info Tom M. Mitchell: Machine Learning

More information

Transition-based dependency parsing

Transition-based dependency parsing Transition-based dependency parsing Syntactic analysis (5LN455) 2014-12-18 Sara Stymne Department of Linguistics and Philology Based on slides from Marco Kuhlmann Overview Arc-factored dependency parsing

More information

Non-Projective Dependency Parsing with Non-Local Transitions

Non-Projective Dependency Parsing with Non-Local Transitions Non-Projective Dependency Parsing with Non-Local Transitions Daniel Fernández-González and Carlos Gómez-Rodríguez Universidade da Coruña FASTPARSE Lab, LyS Research Group, Departamento de Computación Campus

More information

Structured Prediction Models via the Matrix-Tree Theorem

Structured Prediction Models via the Matrix-Tree Theorem Structured Prediction Models via the Matrix-Tree Theorem Terry Koo, Amir Globerson, Xavier Carreras and Michael Collins MIT CSAIL, Cambridge, MA 02139, USA {maestro,gamir,carreras,mcollins}@csail.mit.edu

More information

Dynamic Programming for Higher Order Parsing of Gap-Minding Trees

Dynamic Programming for Higher Order Parsing of Gap-Minding Trees Dynamic Programming for Higher Order Parsing of Gap-Minding Trees Emily Pitler, Sampath Kannan, Mitchell Marcus Computer and Information Science University of Pennsylvania Philadelphia, PA 19104 epitler,kannan,mitch@seas.upenn.edu

More information

2. bizhub Remote Access Function Support List

2. bizhub Remote Access Function Support List 2. bizhub Remote Access Function Support List MFP Function Support List for bizhub Remote Access Basic s MFP model Firmware v C754/ C654/ C754e/ C654e 754/ 654 C554/ C454/ C364/ C284/ C224 (*5) A1610Y

More information

ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS

ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS Table of Contents OVERVIEW... 1 Baseline requirements beginning with 9.3.2 and 8.2.2... 2 System requirements... 2 9.3.2... 2 8.2.2... 3 Supported

More information

Guide & User Instructions

Guide & User Instructions Guide & User Instructions Revised 06/2012 726 Grant Street Troy Ohio 45373 877.698.3262 937.335.3887 onecallnow.com support@onecallnow.com America s Largest Message Notification Provider Copyright 2009-2012

More information

One-screen Follow-up Reference Guide. Merlin.net Patient Care Network (PCN)

One-screen Follow-up Reference Guide. Merlin.net Patient Care Network (PCN) One-screen Follow-up Reference Guide Merlin.net Patient Care Network (PCN) One-screen Follow-up One-screen follow-up via the Recent Transmissions screen allows you to: View and print selected transmissions

More information

Section Software

Section Software 4800 Software Language Standard Sets FS-4-8-014-01 4800 STANDARD SET ENGLISH/CROATIAN V1.2 FS-4-8-016-01 4800 STANDARD SET ENGLISH/DANISH V1.2 FS-4-8-004-03 4800 STANDARD SET ENGLISH/DUTCH V1.2 FS-4-8-002-03

More information

Transition-Based Dependency Parsing with MaltParser

Transition-Based Dependency Parsing with MaltParser Transition-Based Dependency Parsing with MaltParser Joakim Nivre Uppsala University and Växjö University Transition-Based Dependency Parsing 1(13) Introduction Outline Goals of the workshop Transition-based

More information

This bulletin was created to inform you of the release of the new version 4.30 of the Epson EMP Monitor software utility.

This bulletin was created to inform you of the release of the new version 4.30 of the Epson EMP Monitor software utility. EPSON PRODUCT SUPPORT BULLETIN Date: 04/20/2009 Originator: JAM PSB #: PSB.2009.06.001 Authorization: Reference: TI 09-05e Rev. A/B Total Pages: 5 Product(s): PowerLite 735c / Cinema 500 / 737c / 745c

More information

Managing a Multilingual Treebank Project

Managing a Multilingual Treebank Project Managing a Multilingual Treebank Project Milan Souček Timo Järvinen Adam LaMontagne Lionbridge Finland {milan.soucek,timo.jarvinen,adam.lamontagne}@lionbridge.com Abstract This paper describes the work

More information

Turning on the Turbo: Fast Third-Order Non- Projective Turbo Parsers

Turning on the Turbo: Fast Third-Order Non- Projective Turbo Parsers Carnegie Mellon University Research Showcase @ CMU Language Technologies Institute School of Computer Science 8-2013 Turning on the Turbo: Fast Third-Order Non- Projective Turbo Parsers Andre F.T. Martins

More information

Licensed Program Specifications

Licensed Program Specifications AFP Font Collection for MVS, OS/390, VM, and VSE Program Number 5648-B33 Licensed Program Specifications AFP Font Collection for MVS, OS/390, VM, and VSE, hereafter referred to as AFP Font Collection,

More information

INSITE Features Notes

INSITE Features Notes INSITE 8.1.2 Features Notes The latest INSITE information can be found on the website at http://insite.cummins.com For technical support, please send an email to servicetoolsupport@cummins.com or call

More information

An Empirical Study of Semi-supervised Structured Conditional Models for Dependency Parsing

An Empirical Study of Semi-supervised Structured Conditional Models for Dependency Parsing An Empirical Study of Semi-supervised Structured Conditional Models for Dependency Parsing Jun Suzuki, Hideki Isozaki NTT CS Lab., NTT Corp. Kyoto, 619-0237, Japan jun@cslab.kecl.ntt.co.jp isozaki@cslab.kecl.ntt.co.jp

More information

NLP in practice, an example: Semantic Role Labeling

NLP in practice, an example: Semantic Role Labeling NLP in practice, an example: Semantic Role Labeling Anders Björkelund Lund University, Dept. of Computer Science anders.bjorkelund@cs.lth.se October 15, 2010 Anders Björkelund NLP in practice, an example:

More information

Hik-Connect Mobile Client

Hik-Connect Mobile Client Hik-Connect Mobile Client SPEC V3.6.3 Name: Hik-Connect Mobile Client Software Version: V3.6.3 Android: System Requirement: Android 4.1 or Above ios: System Requirement: ios 8.0 or Above Software Information

More information

American Philatelic Society Translation Committee. Annual Report Prepared by Bobby Liao

American Philatelic Society Translation Committee. Annual Report Prepared by Bobby Liao American Philatelic Society Translation Committee Annual Report 2012 Prepared by Bobby Liao - 1 - Table of Contents: 1. Executive Summary 2. Translation Committee Activities Summary July 2011 June 2012

More information

The SAP Knowledge Acceleration, website package, can be deployed to any web server, file server, CD-ROM, or a user workstation.

The SAP Knowledge Acceleration, website package, can be deployed to any web server, file server, CD-ROM, or a user workstation. SAP KNOWLEDGE ACCELERATION TECHNICAL SPECIFICATIONS In this guide, you will learn about hardware and software requirements for SAP Knowledge Acceleration (KA). SAP Knowledge Acceleration (KA) is a web-based

More information

Displayer. showing FM-Radio. Basic Functions. 6. Support TXT. 10. Support game

Displayer. showing FM-Radio. Basic Functions. 6. Support TXT. 10. Support game MP4 PLAYER USER MANUAL Displayer Note: VOL button means the round button in the middle. Due to the different firmware versions, some versions are showing Radio Radio and some versions are showing FM-Radio

More information

QT8716. NVR Technology IP Channels 16 (32) Recording Resolution 720p / 1080p / 3MP / 4MP Live Viewing Resolution 1080p. Live Display FPS.

QT8716. NVR Technology IP Channels 16 (32) Recording Resolution 720p / 1080p / 3MP / 4MP Live Viewing Resolution 1080p. Live Display FPS. QT8716 NVR Technology IP Channels 16 (32) Recording Resolution 720p / 1080p / 3MP / 4MP Live Viewing Resolution 1080p Live Display FPS per Channel Hard Drive Supports 8 HDD up to 6TB each Remote Monitoring

More information

Models HP Engage One Top Mount 2x20 CFD (Black) HP Engage One Top Mount 2x20 CFD (White)

Models HP Engage One Top Mount 2x20 CFD (Black) HP Engage One Top Mount 2x20 CFD (White) Overview Models (Black) (White) 1RL95AA 3GS18AA Introduction Frame easily readable price, product, and order information for customers on the, HP s smallest and thinnest CFD, designed to complement your

More information

Let s get parsing! Each component processes the Doc object, then passes it on. doc.is_parsed attribute checks whether a Doc object has been parsed

Let s get parsing! Each component processes the Doc object, then passes it on. doc.is_parsed attribute checks whether a Doc object has been parsed Let s get parsing! SpaCy default model includes tagger, parser and entity recognizer nlp = spacy.load('en ) tells spacy to use "en" with ["tagger", "parser", "ner"] Each component processes the Doc object,

More information

Microsoft Store badge guidelines. October 2017

Microsoft Store badge guidelines. October 2017 Microsoft Store badge guidelines October 2017 Welcome Together we can do amazing things. Millions of fans and thousands of partners and developers across the world empower people and organizations do great

More information

Online Graph Planarisation for Synchronous Parsing of Semantic and Syntactic Dependencies

Online Graph Planarisation for Synchronous Parsing of Semantic and Syntactic Dependencies Online Graph Planarisation for Synchronous Parsing of Semantic and Syntactic Dependencies Ivan Titov University of Illinois at Urbana-Champaign James Henderson, Paola Merlo, Gabriele Musillo University

More information

Dependency Parsing. Allan Jie. February 20, Slides: Allan Jie Dependency Parsing February 20, / 16

Dependency Parsing. Allan Jie. February 20, Slides:   Allan Jie Dependency Parsing February 20, / 16 Dependency Parsing Allan Jie February 20, 2016 Slides: http://www.statnlp.org/dp.html Allan Jie Dependency Parsing February 20, 2016 1 / 16 Table of Contents 1 Dependency Labeled/Unlabeled Dependency Projective/Non-projective

More information

Project Name SmartPSS

Project Name SmartPSS V2.00.1 Language Farsi, Arabic, Russian, Japanese, Korean, Turkish, Vietnamese, Thai, Indonesian, Traditional Chinese, Hebrew, Spanish, Portuguese, French, Dutch, Italian, German, Czech, Slovakia, Hungarian,

More information

INSITE Features Notes

INSITE Features Notes INSITE 8.3.0 Features Notes The latest INSITE information can be found on the website at http://insite.cummins.com. For technical support, please send an email to servicetoolsupport@cummins.com or call

More information

Learning Latent Linguistic Structure to Optimize End Tasks. David A. Smith with Jason Naradowsky and Xiaoye Tiger Wu

Learning Latent Linguistic Structure to Optimize End Tasks. David A. Smith with Jason Naradowsky and Xiaoye Tiger Wu Learning Latent Linguistic Structure to Optimize End Tasks David A. Smith with Jason Naradowsky and Xiaoye Tiger Wu 12 October 2012 Learning Latent Linguistic Structure to Optimize End Tasks David A. Smith

More information

Google Search Appliance

Google Search Appliance Google Search Appliance Search Appliance Internationalization Google Search Appliance software version 7.2 and later Google, Inc. 1600 Amphitheatre Parkway Mountain View, CA 94043 www.google.com GSA-INTL_200.01

More information

Quick Start Guide version 4. Abstract Quick Start Guide for the use of EyeQuestion Software. Rignald Span

Quick Start Guide version 4. Abstract Quick Start Guide for the use of EyeQuestion Software. Rignald Span Quick Start Guide version 4 Abstract Quick Start Guide for the use of EyeQuestion Software Rignald Span rignald@eyequestion.nl Document index Author EyeQuestion Software Document name EyeQuestion Quickguide

More information

introduction to using Watson Services with Java on Bluemix

introduction to using Watson Services with Java on Bluemix introduction to using Watson Services with Java on Bluemix Patrick Mueller @pmuellr, muellerware.org developer advocate for IBM's Bluemix PaaS http://pmuellr.github.io/slides/2015/02-java-intro-with-watson

More information

KYOCERA Quick Scan v1.0

KYOCERA Quick Scan v1.0 KYOCERA Quick Scan v1.0 Software Information PC Name Version 0731 July 31, 2018 KYOCERA Document Solutions Inc. Product Planning Division 1 Table of Contents 1. Overview... 4 1.1. Background... 4 1.2.

More information

DINO-LITE SOFTWARE FOTO SCHERM MET SOFTWARE DINO-LITE SOFTWARE

DINO-LITE SOFTWARE FOTO SCHERM MET SOFTWARE DINO-LITE SOFTWARE FOTO SCHERM MET SOFTWARE 59 A professional, reliable software environment is essential when working with computer equipment like an USB microscope. All Dino-Lite USB products are delivered with an in-house

More information

INSITE Features Notes

INSITE Features Notes INSITE 8.4.0 Features Notes The latest information can be found on the Electronic Service Tools website at https://www.cummins.com/support/electronic-service-tools-support. For technical support, please

More information

Tekniker för storskalig parsning: Dependensparsning 2

Tekniker för storskalig parsning: Dependensparsning 2 Tekniker för storskalig parsning: Dependensparsning 2 Joakim Nivre Uppsala Universitet Institutionen för lingvistik och filologi joakim.nivre@lingfil.uu.se Dependensparsning 2 1(45) Data-Driven Dependency

More information

Syntax and Grammars 1 / 21

Syntax and Grammars 1 / 21 Syntax and Grammars 1 / 21 Outline What is a language? Abstract syntax and grammars Abstract syntax vs. concrete syntax Encoding grammars as Haskell data types What is a language? 2 / 21 What is a language?

More information

Multilingual Support Configuration For IM and Presence Service

Multilingual Support Configuration For IM and Presence Service Multilingual Support Configuration For IM and Presence Service Install Locale Installer on IM and Presence Service, page 1 Error Messages, page 3 Localized Applications, page 5 Install Locale Installer

More information

Inkjet Printer UX Series PREMIUM CLASS. Coding Solutions by Hitachi

Inkjet Printer UX Series PREMIUM CLASS. Coding Solutions by Hitachi Inkjet Printer UX Series PREMIUM CLASS UX Coding Solutions by Hitachi Efficient Clean & Easy Cartridge System With our smart consumable cartridge system mistakes are no longer possible. No risk printing

More information

SAP Crystal Reports 2013 Product Availability Matrix (PAM)

SAP Crystal Reports 2013 Product Availability Matrix (PAM) SAP Crystal Reports 2013 Product Availability Matrix (PAM) Created: May 10, 2012 Updated: Feb 22, 2018 Disclaimer: This document is subject to change and may be changed by SAP at any time without notice.

More information

Microsoft Academic Select Enrollment

Microsoft Academic Select Enrollment Microsoft Academic Select Enrollment Academic Select Agreement number Reseller or Microsoft affiliate to complete Academic Select Agreement Expiration Date Reseller or Microsoft affiliate to complete Enrollment

More information

SAP Crystal Reports for Eclipse Product Availability Matrix (PAM)

SAP Crystal Reports for Eclipse Product Availability Matrix (PAM) SAP Crystal Reports for Eclipse Product Availability Matrix (PAM) Jan 2018 Disclaimer: This document is subject to change and may be changed by SAP at any time without notice. The document is not intended

More information

Structured Perceptron. Ye Qiu, Xinghui Lu, Yue Lu, Ruofei Shen

Structured Perceptron. Ye Qiu, Xinghui Lu, Yue Lu, Ruofei Shen Structured Perceptron Ye Qiu, Xinghui Lu, Yue Lu, Ruofei Shen 1 Outline 1. 2. 3. 4. Brief review of perceptron Structured Perceptron Discriminative Training Methods for Hidden Markov Models: Theory and

More information

Dependency Parsing. Ganesh Bhosale Neelamadhav G Nilesh Bhosale Pranav Jawale under the guidance of

Dependency Parsing. Ganesh Bhosale Neelamadhav G Nilesh Bhosale Pranav Jawale under the guidance of Dependency Parsing Ganesh Bhosale - 09305034 Neelamadhav G. - 09305045 Nilesh Bhosale - 09305070 Pranav Jawale - 09307606 under the guidance of Prof. Pushpak Bhattacharyya Department of Computer Science

More information

Backpropagating through Structured Argmax using a SPIGOT

Backpropagating through Structured Argmax using a SPIGOT Backpropagating through Structured Argmax using a SPIGOT Hao Peng, Sam Thomson, Noah A. Smith @ACL July 17, 2018 Overview arg max Parser Downstream task Loss L Overview arg max Parser Downstream task Head

More information

Complete Messaging Solution

Complete Messaging Solution ervice Mailvice Service & Operations Voice Your customers and clients expect their calls to be handled quickly or routed to the appropriate person or department. This is where ITS Telecom and Systems can

More information

IBM Full Width Quiet Touch Keyboards now available on IBM System p servers and selected IntelliStation workstations

IBM Full Width Quiet Touch Keyboards now available on IBM System p servers and selected IntelliStation workstations Hardware Announcement September 12, 2006 IBM Full Width Quiet Touch Keyboards now available on IBM System p servers and selected IntelliStation workstations Overview New IBM Full Width Quiet Touch Keyboards

More information

GV-Center V2 INTRODUCTION GV CENTER V2 VS. GV CENTER V2 PRO

GV-Center V2 INTRODUCTION GV CENTER V2 VS. GV CENTER V2 PRO -1- GV-Center V2 INTRODUCTION While GV Center V2 Pro is a professional version for a large central monitoring network such as alarm services companies or chain stores, GV Center V2 is a standard version

More information

KAF: a generic semantic annotation format

KAF: a generic semantic annotation format KAF: a generic semantic annotation format Wauter Bosma & Piek Vossen (VU University Amsterdam) Aitor Soroa & German Rigau (Basque Country University) Maurizio Tesconi & Andrea Marchetti (CNR-IIT, Pisa)

More information

12 Steps to Software Translation Success

12 Steps to Software Translation Success 12 Steps to Software Translation Success www.globalizationpartners.com 12 Steps to Software Translation Success Copyright 2016-2017 Globalization Partners International. All rights reserved. This ebook

More information

Modbus Integration Integration for Modbus Functionality for VTR8300 Series

Modbus Integration Integration for Modbus Functionality for VTR8300 Series Modbus Integration Integration for Modbus Functionality for VTR8300 Series Building Management System *For data visualization and analysis Modbus Controller VT8000 Series room controllers 2 TABLE OF CONTENTS

More information

Net: EUR Gross: EUR

Net: EUR Gross: EUR Code: DS-2CD1021-I IP CAMERA DS-2CD1021-I - 1080p 2.8 mm HIKVISION Net: 90.91 EUR Gross: 111.82 EUR IP camera with efficient H.264 image compression algorithm for clear and smooth video streaming at maximal

More information

Hik-Connect Client Software V (Android) V (iOS) Release Notes ( )

Hik-Connect Client Software V (Android) V (iOS) Release Notes ( ) Hik-Connect Client Software V3.1.0 0828(Android) V3.1.0 170830(iOS) Release Notes (2017-09-07) Hik-Connect Version 3.1.0: Optimize Login Page Hik-Connect account and email address are displayed default,

More information

PORTABLE VIDEO BORESCOPE. User Manual

PORTABLE VIDEO BORESCOPE. User Manual PORTABLE VIDEO BORESCOPE User Manual CONTENTS Product Overview---------------------------------2 First Time Use--------------------------------------3 System Mode---------------------------------------5

More information

QuickSpecs. HP Retail Integrated 2x20 Display. Overview. Front. 1. 2X20 LCD, backlit display. 2. USB connector

QuickSpecs. HP Retail Integrated 2x20 Display. Overview. Front. 1. 2X20 LCD, backlit display. 2. USB connector Overview Front 1. 2X20 LCD, backlit display 2. USB connector c04310460 Worldwide Version 2 June 16,2016 Page 1 Overview Shown on back of RP7, Retail System Models (Non-Complex) (Complex) G6U79AA G7G29AA

More information

MaintSmart. Enterprise. User. Guide. for the MaintSmart Translator. version 4.0. How does the translator work?...2 What languages are supported?..

MaintSmart. Enterprise. User. Guide. for the MaintSmart Translator. version 4.0. How does the translator work?...2 What languages are supported?.. How does the translator work?......2 What languages are supported?..3 MaintSmart User Enterprise Guide version 4.0 for the MaintSmart Translator 1 MaintSmart Translator - An Overview. How does it work?

More information

10 Steps to Document Translation Success

10 Steps to Document Translation Success 10 Steps to Document Translation Success www.globalizationpartners.com 10 Steps to Document Translation Success Copyright 2016-2017 Globalization Partners International. All rights reserved. This ebook

More information

Net: EUR Gross: EUR

Net: EUR Gross: EUR Code: DS-2CD1041-I IP CAMERA DS-2CD1041-I 4.0 Mpx 2.8 mm HIKVISION Net: 134.96 EUR Gross: 166.00 EUR IP camera with efficient H.264 image compression algorithm for clear and smooth video streaming at maximal

More information

Net: PLN Gross: PLN

Net: PLN Gross: PLN Code: DS-2CD1001-I IP CAMERA DS-2CD1001-I - 720p 2.8 mm HIKVISION Net: 296.00 PLN Gross: 364.08 PLN IP camera with efficient H.264 image compression algorithm for clear and smooth video streaming at maximal

More information

Perceptive Intelligent Capture Visibility

Perceptive Intelligent Capture Visibility Perceptive Intelligent Capture Visibility Technical Specifications Version: 3.1.x Written by: Product Knowledge, R&D Date: August 2018 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

Dependency Parsing 2 CMSC 723 / LING 723 / INST 725. Marine Carpuat. Fig credits: Joakim Nivre, Dan Jurafsky & James Martin

Dependency Parsing 2 CMSC 723 / LING 723 / INST 725. Marine Carpuat. Fig credits: Joakim Nivre, Dan Jurafsky & James Martin Dependency Parsing 2 CMSC 723 / LING 723 / INST 725 Marine Carpuat Fig credits: Joakim Nivre, Dan Jurafsky & James Martin Dependency Parsing Formalizing dependency trees Transition-based dependency parsing

More information

SmartPSS. Smart Professional Surveillance System. Provide efficient device management, monitoring, playback, alarm, video analytics, video wall, etc.

SmartPSS. Smart Professional Surveillance System. Provide efficient device management, monitoring, playback, alarm, video analytics, video wall, etc. SmartPSS Smart Professional Surveillance System An easy-to-use security surveillance application with friendly interface. Designed for small or medium daily-use system. Provide efficient device management,

More information

Automatic Discovery of Feature Sets for Dependency Parsing

Automatic Discovery of Feature Sets for Dependency Parsing Automatic Discovery of Feature Sets for Dependency Parsing Peter Nilsson Pierre Nugues Department of Computer Science Lund University peter.nilsson.lund@telia.com Pierre.Nugues@cs.lth.se Abstract This

More information

Product Library 4.0 EUR. CD Contents. Release Notes July 1st, Windows Vista. Windows. Windows. Server Windows 2000.

Product Library 4.0 EUR. CD Contents. Release Notes July 1st, Windows Vista. Windows. Windows. Server Windows 2000. 1 of 7 Product Library 4.0 EUR Release Notes July 1st, 2010 CD Contents Printer s Version 98, Me, NT4.0 2000 XP Vista 7 Server 2000 Server 2003 Server 2008 Server 2008 R2 KX DRIVER 5.1.1705 KX DRIVER 4.2.1409b

More information

Leica SmartWorx Viva Software Release Notes

Leica SmartWorx Viva Software Release Notes Leica SmartWorx Viva Software Release Notes Release Details: Version 5.02 Release date 03 October 2013 Available for: Products Field Controllers: CS10, CS15 Total Stations: no new firmware GNSS Sensors:

More information

Oracle Access Manager

Oracle Access Manager Oracle Access Manager Addendum to Release Notes 10g (10.1.4.0.1) January 2007 This document is an addendum to the Release Notes for Oracle Access Manager 10g (10.1.4.0.1). It contains the following sections:

More information

GLOBAL NETFLIX PREFERRED VENDOR (NPV) RATE CARD:

GLOBAL NETFLIX PREFERRED VENDOR (NPV) RATE CARD: Global Rate Card Timed Text Origination Rates Audio Description Rates Netflix Scope of Work Guidelines A/V Materials Timed Text Audio Materials Trailers Forced Narratives NPV SLA & KPIs GLOBAL NETFLIX

More information

Net: EUR Gross: EUR

Net: EUR Gross: EUR Code: DS-2CD1621FWD-I IP CAMERA DS-2CD1621FWD-I 2.8... 12 mm HIKVISION Net: 194.09 EUR Gross: 238.73 EUR IP camera with efficient H.264 image compression algorithm for clear and smooth video streaming

More information

Filr 3.3 Desktop Application Guide for Linux. December 2017

Filr 3.3 Desktop Application Guide for Linux. December 2017 Filr 3.3 Desktop Application Guide for Linux December 2017 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights,

More information

Bidirectional LTAG Dependency Parsing

Bidirectional LTAG Dependency Parsing Bidirectional LTAG Dependency Parsing Libin Shen BBN Technologies Aravind K. Joshi University of Pennsylvania We propose a novel algorithm for bi-directional parsing with linear computational complexity,

More information

Xapity Current Activity Administration Guide.

Xapity Current Activity Administration Guide. Xapity Current Activity Administration Guide www.xapity.com Document Version 1.0 October 2016 This document contains information that may change without notice. While every effort has been made to ensure

More information

Complete Messaging Solution

Complete Messaging Solution ervice Mailvice Service & Operations Voice Your customers and clients expect their calls to be handled quickly or routed to the appropriate person or department. This is where ITS Telecom and Systems can

More information

Oracle Policy Automation Release Notes

Oracle Policy Automation Release Notes Oracle Policy Automation 10.1.0 Release Notes Contents Release Overview 2 Oracle Policy Modeling 4 Singleton entities should not be used... 4 InstanceValueIf function... 4 Automatic entity containment...

More information

SUSE LINUX Openexchange Server 4.1 Installation Kit Strong Encryption (128+ bit) German $ % 92.65

SUSE LINUX Openexchange Server 4.1 Installation Kit Strong Encryption (128+ bit) German $ % 92.65 While every effort is made to ensure the price list is as current as possible at time of publication, Novell Product Announcements (NPAs) may be issued which supersede information found within the price

More information

CONTENT. ANALYST OPINION INDICATOR for MT4. Set up & Configuration Guide. Description 1 Subscribing to TRADING CENTRAL feed 1 Installation process 1

CONTENT. ANALYST OPINION INDICATOR for MT4. Set up & Configuration Guide. Description 1 Subscribing to TRADING CENTRAL feed 1 Installation process 1 ANALYST OPINION INDICATOR for MT4 Set up & Configuration CONTENT Description 1 Subscribing to TRADING CENTRAL feed 1 Installation process 1 Indicator's use and set up 4 Features and parameters 5 Upgrade

More information

Installation Guide Command WorkStation 5.6 with Fiery Extended Applications 4.2

Installation Guide Command WorkStation 5.6 with Fiery Extended Applications 4.2 Installation Guide Command WorkStation 5.6 with Fiery Extended Applications 4.2 Fiery Extended Applications Package (FEA) v4.2 contains Fiery applications for performing tasks associated with a Fiery Server.

More information

GV-Hot Swap Recording Server System V5 (Rev.D) 4U, 20-Bay

GV-Hot Swap Recording Server System V5 (Rev.D) 4U, 20-Bay -1- GV-Hot Swap Recording Server System V5 (Rev.D) 4U, 20-Bay INTRODUCTION The GV-Hot Swap Recording Server System is a video streaming server supported by a powerful data storage capacity and designed

More information

Probabilistic parsing with a wide variety of features

Probabilistic parsing with a wide variety of features Probabilistic parsing with a wide variety of features Mark Johnson Brown University IJCNLP, March 2004 Joint work with Eugene Charniak (Brown) and Michael Collins (MIT) upported by NF grants LI 9720368

More information

Stack- propaga+on: Improved Representa+on Learning for Syntax

Stack- propaga+on: Improved Representa+on Learning for Syntax Stack- propaga+on: Improved Representa+on Learning for Syntax Yuan Zhang, David Weiss MIT, Google 1 Transi+on- based Neural Network Parser p(action configuration) So1max Hidden Embedding words labels POS

More information

LiveEngage System Requirements and Language Support Document Version: 5.0 February Relevant for LiveEngage Enterprise In-App Messenger SDK v2.

LiveEngage System Requirements and Language Support Document Version: 5.0 February Relevant for LiveEngage Enterprise In-App Messenger SDK v2. LiveEngage System Requirements and Language Support Document Version: 5.0 February 2017 Relevant for LiveEngage Enterprise In-App Messenger SDK v2.0 Introduction The LiveEngage platform aims to provide

More information

Efficient Parsing for Head-Split Dependency Trees

Efficient Parsing for Head-Split Dependency Trees Efficient Parsing for Head-Split Dependency Trees Giorgio Satta Dept. of Information Engineering University of Padua, Italy satta@dei.unipd.it Marco Kuhlmann Dept. of Linguistics and Philology Uppsala

More information

Multilingual Support Configuration For IM and Presence Service

Multilingual Support Configuration For IM and Presence Service Multilingual Support Configuration For IM and Presence Service Locale Installation, page 1 Install Locale Installer on IM and Presence Service, page 3 Error Messages, page 5 Localized Applications, page

More information