A Minimal Span-Based Neural Constituency Parser. Mitchell Stern, Jacob Andreas, Dan Klein UC Berkeley

Size: px
Start display at page:

Download "A Minimal Span-Based Neural Constituency Parser. Mitchell Stern, Jacob Andreas, Dan Klein UC Berkeley"

Transcription

1 A Minimal pan-based Neural Constituency Parser Mitchell tern, Jacob Andreas, Dan Klein UC Berkeley

2 Parsing as pan Classification. he enjoys playing tennis

3 Parsing as pan Classification. he enjoys playing tennis he enjoys playing tennis

4 Parsing as pan Classification. he enjoys playing tennis he enjoys playing tennis

5 Parsing as pan Classification. he enjoys playing tennis he enjoys playing tennis

6 Parsing as pan Classification. he enjoys playing tennis he enjoys playing tennis

7 Parsing as pan Classification. he enjoys playing tennis he enjoys playing tennis

8 Parsing as pan Classification. he enjoys playing tennis he enjoys playing tennis

9 Parsing as pan Classification. he enjoys playing tennis he enjoys playing tennis

10 Parsing as pan Classification. he enjoys playing tennis he enjoys playing tennis

11 Parsing as pan Classification. he enjoys playing tennis he enjoys playing tennis

12 Parsing as pan Classification. X he enjoys Y playing tennis he enjoys playing tennis

13 Parsing as pan Classification. X he enjoys Y playing tennis he enjoys playing tennis

14 Grammar: Minimality in Parsing

15 Minimality in Parsing Grammar: (decided) (workers) (decided) [Collins (1999)]

16 Grammar: (decided) Minimality in Parsing (workers) (decided) ^ ^ [Collins (1999)] [Klein and Manning (2003)]

17 Grammar: (decided) Minimality in Parsing (workers) (decided) ^ ^ [Collins (1999)] [Klein and Manning (2003)] [Hall et al. (2014)]

18 Grammar: (decided) Minimality in Parsing (workers) (decided) ^ ^ [Collins (1999)] [Klein and Manning (2003)] [Hall et al. (2014)] [Vinyals et al. (2015)]

19 coring: Minimality in Parsing

20 Minimality in Parsing coring: score( ^ ^) [Klein and Manning (2003)]

21 Minimality in Parsing coring: score( ^ ^) score(i, k, j, ) [Klein and Manning (2003)] [Hall et al. (2014)]

22 Minimality in Parsing coring: score( ^ ^) score(i, k, j, ) score(i, j, ) and score action (i, k, j) [Klein and Manning (2003)] [Hall et al. (2014)] [Cross and Huang (2016)]

23 Minimality in Parsing coring: score( ^ ^) score(i, k, j, ) score(i, j, ) and score action (i, k, j) score(i, j, ) [Klein and Manning (2003)] [Hall et al. (2014)] [Cross and Huang (2016)] [This work]

24 Decoding: Minimality in Parsing

25 Minimality in Parsing Decoding: Chart-based Globally optimal, O(n 3 ) time complexity

26 Minimality in Parsing Decoding: Chart-based Globally optimal, O(n 3 ) time complexity Transition-based Greedy, O(n) or O(n 2 ) time complexity

27 Tree coring Function

28 Tree coring Function he enjoys playing tennis

29 Tree coring Function he enjoys playing tennis

30 Tree coring Function he enjoys playing tennis

31 Tree coring Function he enjoys playing tennis

32 Tree coring Function he enjoys playing tennis

33 Tree coring Function he enjoys playing tennis

34 Dynamic Program: Base Case

35 Dynamic Program: Base Case Pick best label

36 Dynamic Program: General Case

37 Dynamic Program: General Case Pick best label

38 Dynamic Program: General Case Pick best label Pick best split point

39 coring Function Implementation [Inspired by Cross and Huang (2016)]

40 coring Function Implementation he enjoys playing tennis. [Inspired by Cross and Huang (2016)]

41 coring Function Implementation Bidirectional LTM he enjoys playing tennis. [Inspired by Cross and Huang (2016)]

42 coring Function Implementation (f j - f i, b i - b j ) (f i, b i ) (f j, b j ) pan Difference Bidirectional LTM he enjoys playing tennis. [Inspired by Cross and Huang (2016)]

43 coring Function Implementation s s(i, j, X) (f j - f i, b i - b j ) (f i, b i ) (f j, b j ) Feedforward Network pan Difference Bidirectional LTM he enjoys playing tennis. [Inspired by Cross and Huang (2016)]

44 Training

45 Training Want for all

46 Training Want for all Require larger margin for higher loss:

47 Training Want for all Require larger margin for higher loss: Use hinge penalty function:

48 Training Use loss-augmented decoding during training:

49 Training Use loss-augmented decoding during training: Loss-augmented decoding for Hamming loss: Replace with

50 Initial Results Parser F1 core Hall et al. (2014) 89.2 Vinyals et al. (2015) 88.3 Cross and Huang (2016) 91.3 Dyer et al. (2016) 91.7 Liu and Zhang (2017) 91.7 Our Chart Parser 91.7

51 Top-Down Parsing. he enjoys playing tennis

52 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

53 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

54 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

55 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

56 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

57 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

58 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

59 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

60 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

61 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

62 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

63 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

64 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

65 Top-Down Parsing. he enjoys playing tennis he enjoys playing tennis.

66 Greedily Label and plit

67 Greedily Label and plit

68 Greedily Label and plit

69 Top-Down Training Margin constraint for each decision: score(gold) 1 + score(other)

70 Top-Down Training Margin constraint for each decision: score(gold) 1 + score(other) Train with exploration using a dynamic oracle [Goldberg and Nivre (2012), Cross and Huang (2016)]

71 Initial Results Parser F1 core Hall et al. (2014) 89.2 Vinyals et al. (2015) 88.3 Cross and Huang (2016) 91.3 Dyer et al. (2016) 91.7 Liu and Zhang (2016) 91.7 Our Chart Parser 91.7 Our Top-Down Parser 91.6

72 Extensions

73 Extensions Label scoring for unary chains: plit unary chains into top-middle-bottom

74 Extensions Label scoring for unary chains: plit unary chains into top-middle-bottom tructured label loss for unary chains: Hamming distance on labels (vs. 0-1 loss)

75 Extensions Label scoring for unary chains: plit unary chains into top-middle-bottom tructured label loss for unary chains: Hamming distance on labels (vs. 0-1 loss) plit-based (vs. span-based) scoring: Left-right, concatenate, deep biaffine [Cross and Huang (2016)] [Dozat and Manning (2016)]

76 Final Results Parser F1 core Hall et al. (2014) 89.2 Vinyals et al. (2015) 88.3 Cross and Huang (2016) 91.3 Dyer et al. (2016) 91.7 Liu and Zhang (2016) 91.7 Our Best Chart Parser 91.8 Our Best Top-Down Parser 91.8

77 Conclusion

78 Conclusion A minimal span-based parser can achieve state-ofthe-art results.

79 Conclusion A minimal span-based parser can achieve state-ofthe-art results. Little is lost going from global to greedy decoding.

80 Conclusion A minimal span-based parser can achieve state-ofthe-art results. Little is lost going from global to greedy decoding. Various extensions yield only minimal gains beyond the core system.

81 Thanks!

Syntax and Parsing II

Syntax and Parsing II Syntax and Parsing II Dependency Parsing Slav Petrov Google Thanks to: Dan Klein, Ryan McDonald, Alexander Rush, Joakim Nivre, Greg Durrett, David Weiss Lisbon Machine Learning School 2015 Notes for 2016

More information

Syntax and Parsing II

Syntax and Parsing II Syntax and Parsing II Dependency Parsing Slav Petrov Google Thanks to: Dan Klein, Ryan McDonald, Alexander Rush, Joakim Nivre, Greg Durrett, David Weiss Lisbon Machine Learning School 2016 Dependency Parsing

More information

Joint Parsing and Translation

Joint Parsing and Translation Joint arsing and Translation Yang Liu and Qun Liu Institute of Computing Technology Chinese Academy of Sciences August 26, 2010 COLING 2010, Beijing, China 1 Separate arsing and Translation source target

More information

Fun Neural Net Demo Site. CS 188: Artificial Intelligence. N-Layer Neural Network. Multi-class Softmax Σ >0? Deep Learning II

Fun Neural Net Demo Site. CS 188: Artificial Intelligence. N-Layer Neural Network. Multi-class Softmax Σ >0? Deep Learning II Fun Neural Net Demo Site CS 188: Artificial Intelligence Demo-site: http://playground.tensorflow.org/ Deep Learning II Instructors: Pieter Abbeel & Anca Dragan --- University of California, Berkeley [These

More information

Uninformed Search (Ch )

Uninformed Search (Ch ) 1 Uninformed Search (Ch. 3-3.4) 3 Terminology review State: a representation of a possible configuration of our problem Action: -how our agent interacts with the problem -can be different depending on

More information

Uninformed Search (Ch )

Uninformed Search (Ch ) 1 Uninformed Search (Ch. 3-3.4) 7 Small examples 8-Queens: how to fit 8 queens on a 8x8 board so no 2 queens can capture each other Two ways to model this: Incremental = each action is to add a queen to

More information

Princess Nora University Faculty of Computer & Information Systems ARTIFICIAL INTELLIGENCE (CS 370D) Computer Science Department

Princess Nora University Faculty of Computer & Information Systems ARTIFICIAL INTELLIGENCE (CS 370D) Computer Science Department Princess Nora University Faculty of Computer & Information Systems 1 ARTIFICIAL INTELLIGENCE (CS 370D) Computer Science Department (CHAPTER-3-PART2) PROBLEM SOLVING AND SEARCH (Course coordinator) Searching

More information

Potentials for combining walking and public transport at the agglomeration scale

Potentials for combining walking and public transport at the agglomeration scale THE MULTIMODAL WALKER 1 Potentials for combining walking and public transport at the agglomeration scale The background for what s in store 2 Despite 30 yrs of public policy and (in)action, trends and

More information

1.1 The size of the search space Modeling the problem Change over time Constraints... 21

1.1 The size of the search space Modeling the problem Change over time Constraints... 21 Introduction : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : 1 I What Are the Ages of My Three Sons? : : : : : : : : : : : : : : : : : 9 1 Why Are Some Problems Dicult to Solve? : : :

More information

Predicting Horse Racing Results with Machine Learning

Predicting Horse Racing Results with Machine Learning Predicting Horse Racing Results with Machine Learning LYU 1703 LIU YIDE 1155062194 Supervisor: Professor Michael R. Lyu Outline Recap of last semester Object of this semester Data Preparation Set to sequence

More information

Predicting Horse Racing Results with TensorFlow

Predicting Horse Racing Results with TensorFlow Predicting Horse Racing Results with TensorFlow LYU 1703 LIU YIDE WANG ZUOYANG News CUHK Professor, Gu Mingao, wins 50 MILLIONS dividend using his sure-win statistical strategy. News AlphaGO defeats human

More information

Optimization and Search. Jim Tørresen Optimization and Search

Optimization and Search. Jim Tørresen Optimization and Search Optimization and Search INF3490 - Biologically inspired computing Lecture 1: Marsland chapter 9.1, 9.4-9.6 2017 Optimization and Search Jim Tørresen 2 Optimization and Search Methods (selection) Optimization

More information

Problem Solving Agents

Problem Solving Agents Problem Solving Agents A problem solving agent is one which decides what actions and states to consider in completing a goal Examples: Finding the shortest path from one city to another 8-puzzle Problem

More information

A Novel Dependency-to-String Model for Statistical Machine Translation

A Novel Dependency-to-String Model for Statistical Machine Translation A Novel Dependency-to-String Model for Statistical Machine Translation Jun Xie Haitao Mi Qun Liu Institute of Computing Technology Chinese Academy of Sciences INSTITUTE OF COMPUTING TECHNOLOGY Dependency

More information

Decision Trees. Nicholas Ruozzi University of Texas at Dallas. Based on the slides of Vibhav Gogate and David Sontag

Decision Trees. Nicholas Ruozzi University of Texas at Dallas. Based on the slides of Vibhav Gogate and David Sontag Decision Trees Nicholas Ruozzi University of Texas at Dallas Based on the slides of Vibhav Gogate and David Sontag Announcements Course TA: Hao Xiong Office hours: Friday 2pm-4pm in ECSS2.104A1 First homework

More information

DATA MINING ON CRICKET DATA SET FOR PREDICTING THE RESULTS. Sushant Murdeshwar

DATA MINING ON CRICKET DATA SET FOR PREDICTING THE RESULTS. Sushant Murdeshwar DATA MINING ON CRICKET DATA SET FOR PREDICTING THE RESULTS by Sushant Murdeshwar A Project Report Submitted in Partial Fulfillment of the Requirements for the Degree of Master of Science in Computer Science

More information

EE582 Physical Design Automation of VLSI Circuits and Systems

EE582 Physical Design Automation of VLSI Circuits and Systems EE Prof. Dae Hyun Kim School of Electrical Engineering and Computer Science Washington State University Routing Grid Routing Grid Routing Grid Routing Grid Routing Grid Routing Lee s algorithm (Maze routing)

More information

Deriving an Optimal Fantasy Football Draft Strategy

Deriving an Optimal Fantasy Football Draft Strategy Stanford University CS 221 Artificial Intelligence: Principles and Techniques Deriving an Optimal Fantasy Football Draft Strategy Team Members: Alex Haigh Jack Payette Cameron Van de Graaf December 16,

More information

Complete Streets and Context Classification

Complete Streets and Context Classification Complete Streets and Context Classification April 2017 Secretary s Pedestrian Safety Initiative Dangerous by Design (2011, 2014) Orlando, Tampa, Jacksonville, Miami-Ft. Lauderdale Secretary Ananth Prasad

More information

i) Linear programming

i) Linear programming Problem statement Sailco Corporation must determine how many sailboats should be produced during each of the next four quarters (one quarter = three months). The demand during each of the next four quarters

More information

Phrase-based Image Captioning

Phrase-based Image Captioning Phrase-based Image Captioning Rémi Lebret, Pedro O. Pinheiro, Ronan Collobert Idiap Research Institute / EPFL ICML, 9 July 2015 Image Captioning Objective: Generate descriptive sentences given a sample

More information

Planning and Acting in Partially Observable Stochastic Domains

Planning and Acting in Partially Observable Stochastic Domains Planning and Acting in Partially Observable Stochastic Domains Leslie Pack Kaelbling and Michael L. Littman and Anthony R. Cassandra (1998). Planning and Acting in Partially Observable Stochastic Domains,

More information

CT PET-2018 Part - B Phd COMPUTER APPLICATION Sample Question Paper

CT PET-2018 Part - B Phd COMPUTER APPLICATION Sample Question Paper CT PET-2018 Part - B Phd COMPUTER APPLICATION Sample Question Paper Note: All Questions are compulsory. Each question carry one mark. 1. Error detection at the data link layer is achieved by? [A] Bit stuffing

More information

SEARCH SEARCH TREE. Node: State in state tree. Root node: Top of state tree

SEARCH SEARCH TREE. Node: State in state tree. Root node: Top of state tree Page 1 Page 1 Page 2 SEARCH TREE SEARCH Node: State in state tree Root node: Top of state tree Children: Nodes that can be reached from a given node in 1 step (1 operator) Expanding: Generating the children

More information

SEARCH TREE. Generating the children of a node

SEARCH TREE. Generating the children of a node SEARCH TREE Node: State in state tree Root node: Top of state tree Children: Nodes that can be reached from a given node in 1 step (1 operator) Expanding: Generating the children of a node Open: Closed:

More information

Caltrain Bike Parking Management Plan

Caltrain Bike Parking Management Plan Caltrain Bike Parking Management Plan Citizens Advisory Committee June 15th, 2016 Context Capacity and Access Challenges Between 11% and 19% of customers make bike-based trips to and/or from system Majority

More information

Introduction to Pattern Recognition

Introduction to Pattern Recognition Introduction to Pattern Recognition Jason Corso SUNY at Buffalo 12 January 2009 J. Corso (SUNY at Buffalo) Introduction to Pattern Recognition 12 January 2009 1 / 28 Pattern Recognition By Example Example:

More information

Relative Vulnerability Matrix for Evaluating Multimodal Traffic Safety. O. Grembek 1

Relative Vulnerability Matrix for Evaluating Multimodal Traffic Safety. O. Grembek 1 337 Relative Vulnerability Matrix for Evaluating Multimodal Traffic Safety O. Grembek 1 1 Safe Transportation Research and Education Center, Institute of Transportation Studies, University of California,

More information

Basketball field goal percentage prediction model research and application based on BP neural network

Basketball field goal percentage prediction model research and application based on BP neural network ISSN : 0974-7435 Volume 10 Issue 4 BTAIJ, 10(4), 2014 [819-823] Basketball field goal percentage prediction model research and application based on BP neural network Jijun Guo Department of Physical Education,

More information

Harmonisation of Work Health and Safety Legislation

Harmonisation of Work Health and Safety Legislation NATIONAL RESEARCH CENTRE FOR OHS REGULATION Work health and safety Briefing Work Health and Safety Harmonisation of Work Health and Safety Legislation Acts and regulations giving effect to the Australian

More information

Solving MINLPs with BARON. Mustafa Kılınç & Nick Sahinidis Department of Chemical Engineering Carnegie Mellon University

Solving MINLPs with BARON. Mustafa Kılınç & Nick Sahinidis Department of Chemical Engineering Carnegie Mellon University Solving MINLPs with BARON Mustafa Kılınç & Nick Sahinidis Department of Chemical Engineering Carnegie Mellon University MINLP 2014 Carnegie Mellon University June 4, 2014 MIXED-INTEGER NONLINEAR PROGRAMS

More information

Prudhoe Bay Oil Production Optimization: Using Virtual Intelligence Techniques, Stage One: Neural Model Building

Prudhoe Bay Oil Production Optimization: Using Virtual Intelligence Techniques, Stage One: Neural Model Building Prudhoe Bay Oil Production Optimization: Using Virtual Intelligence Techniques, Stage One: Neural Model Building Shahab D. Mohaghegh, West Virginia University Lynda A. Hutchins, BP Exploration (Alaska),

More information

A IMPROVED VOGEL S APPROXIMATIO METHOD FOR THE TRA SPORTATIO PROBLEM. Serdar Korukoğlu 1 and Serkan Ballı 2.

A IMPROVED VOGEL S APPROXIMATIO METHOD FOR THE TRA SPORTATIO PROBLEM. Serdar Korukoğlu 1 and Serkan Ballı 2. Mathematical and Computational Applications, Vol. 16, No. 2, pp. 370-381, 2011. Association for Scientific Research A IMPROVED VOGEL S APPROXIMATIO METHOD FOR THE TRA SPORTATIO PROBLEM Serdar Korukoğlu

More information

BASKETBALL PREDICTION ANALYSIS OF MARCH MADNESS GAMES CHRIS TSENG YIBO WANG

BASKETBALL PREDICTION ANALYSIS OF MARCH MADNESS GAMES CHRIS TSENG YIBO WANG BASKETBALL PREDICTION ANALYSIS OF MARCH MADNESS GAMES CHRIS TSENG YIBO WANG GOAL OF PROJECT The goal is to predict the winners between college men s basketball teams competing in the 2018 (NCAA) s March

More information

Biomechanics and Models of Locomotion

Biomechanics and Models of Locomotion Physics-Based Models for People Tracking: Biomechanics and Models of Locomotion Marcus Brubaker 1 Leonid Sigal 1,2 David J Fleet 1 1 University of Toronto 2 Disney Research, Pittsburgh Biomechanics Biomechanics

More information

Benefits of Detailed Compressor Modeling in Optimizing Production from Gas-Lifted Fields. Manickam S. Nadar Greg Stephenson

Benefits of Detailed Compressor Modeling in Optimizing Production from Gas-Lifted Fields. Manickam S. Nadar Greg Stephenson Benefits of Detailed Compressor Modeling in Optimizing Production from Gas-Lifted Fields Manickam S. Nadar Greg Stephenson Contents Optimization of Gas-Lifted Fields The Need for Modelling of Gas-Lift

More information

The Cross-Calibrated Multi-Platform (CCMP) Ocean Vector Wind Analysis (V2.0)

The Cross-Calibrated Multi-Platform (CCMP) Ocean Vector Wind Analysis (V2.0) The Cross-Calibrated Multi-Platform (CCMP) Ocean Vector Wind Analysis (V2.0) Carl A. Mears, L. Ricciardulli, J. Scott and F. J. Wentz Remote Sensing Systems Ross Hoffman, S. Mark Leidner Robert Atlas Atmospheric

More information

CENG 466 Artificial Intelligence. Lecture 4 Solving Problems by Searching (II)

CENG 466 Artificial Intelligence. Lecture 4 Solving Problems by Searching (II) CENG 466 Artificial Intelligence Lecture 4 Solving Problems by Searching (II) Topics Search Categories Breadth First Search Uniform Cost Search Depth First Search Depth Limited Search Iterative Deepening

More information

Generating None-Plans in Order to Find Plans 1

Generating None-Plans in Order to Find Plans 1 Generating None-Plans in Order to Find Plans 1 Wojciech Penczek a joint work with Michał Knapik and Artur Niewiadomski Institute of Computer Sciences, PAS, Warsaw, and Siedlce University, Poland MINI PW,

More information

Resource Guide. Copyright 2017 Institute of Certified Management Accountants. Updated 8/30/17

Resource Guide. Copyright 2017 Institute of Certified Management Accountants. Updated 8/30/17 Resource Guide Copyright 2017 Institute of Certified Management Accountants Updated 8/30/17 RESOURCE GUIDE Institute of Certified Management Accountants Certified in Strategy and Competitive Analysis Exam

More information

Robot Walking with Genetic Algorithms

Robot Walking with Genetic Algorithms Robot Walking with Genetic Algorithms Bente Reichardt 14. December 2015 Bente Reichardt 1/52 Outline Introduction Genetic algorithms Quadruped Robot Hexapod Robot Biped Robot Evaluation Bente Reichardt

More information

Programming For Open Water Swimming Success. Greg Towle National Open Water Coach Swimming Australia

Programming For Open Water Swimming Success. Greg Towle National Open Water Coach Swimming Australia Programming For Open Water Swimming Success Greg Towle National Open Water Coach Swimming Australia THINGS TO CONSIDER It takes a certain type of athlete to become a distance swimmer Level of commitment

More information

Uninformed search methods II.

Uninformed search methods II. CS 1571 Introduction to AI Lecture 5 Uninformed search methods II. Milos Hauskrecht milos@cs.pitt.edu 5329 Sennott Square Uninformed methods Uninformed search methods use only information available in

More information

A REAL-TIME SIGNAL CONTROL STRATEGY FOR MITIGATING THE IMPACT OF BUS STOPS ON URBAN ARTERIALS

A REAL-TIME SIGNAL CONTROL STRATEGY FOR MITIGATING THE IMPACT OF BUS STOPS ON URBAN ARTERIALS A REAL-TIME SIGNAL CONTROL STRATEGY FOR MITIGATING THE IMPACT OF BUS STOPS ON URBAN ARTERIALS Celeste Chavis 1, and Eleni Christofa 2 1 Department of Transportation and Urban Infrastructure Studies, Morgan

More information

CS472 Foundations of Artificial Intelligence. Final Exam December 19, :30pm

CS472 Foundations of Artificial Intelligence. Final Exam December 19, :30pm CS472 Foundations of Artificial Intelligence Final Exam December 19, 2003 12-2:30pm Name: (Q exam takers should write their Number instead!!!) Instructions: You have 2.5 hours to complete this exam. The

More information

CHAPTER 7 ACCESS MANAGEMENT. Background. Principles of Access Management. Hennepin County Transportation Systems Plan (HC-TSP)

CHAPTER 7 ACCESS MANAGEMENT. Background. Principles of Access Management. Hennepin County Transportation Systems Plan (HC-TSP) CHAPTER 7 ACCESS MANAGEMENT Background Principles of Access Management Hennepin County Transportation Systems Plan (HC-TSP) Chapter 7 Access Management 7.1 Background Access management has become an important

More information

Lucintel. Publisher Sample

Lucintel.   Publisher Sample Lucintel http://www.marketresearch.com/lucintel-v2747/ Publisher Sample Phone: 800.298.5699 (US) or +1.240.747.3093 or +1.240.747.3093 (Int'l) Hours: Monday - Thursday: 5:30am - 6:30pm EST Fridays: 5:30am

More information

TENNIS BC PROVINCIAL REGROUPINGS APPLICATION FORM

TENNIS BC PROVINCIAL REGROUPINGS APPLICATION FORM TENNIS BC PROVINCIAL REGROUPINGS 2018 19 APPLICATION FORM PROGRAM INFORMATION The provincial regroupings will be held on weekends between September 2018 June 2019. Each regrouping will consist of 2 full

More information

VLSI Design 12. Design Styles

VLSI Design 12. Design Styles 1 9 8 5 1 9 8 7 1 9 9 1 1 9 9 3 1 9 9 9 2 0 0 1 2 0 0 5 2 0 0 7 2 0 0 9 Pr odu ctiv it y (T r an s./ St a f -M o nt h ) VLSI Design Last module: Floorplanning Sequential circuit design Clock skew This

More information

Dealing with Dependent Failures in Distributed Systems

Dealing with Dependent Failures in Distributed Systems Dealing with Dependent Failures in Distributed Systems Ranjita Bhagwan, Henri Casanova, Alejandro Hevia, Flavio Junqueira, Yanhua Mao, Keith Marzullo, Geoff Voelker, Xianan Zhang University California

More information

Standing Committee on Policy and Strategic Priorities. Mount Pleasant Industrial Area Parking Strategy and Access Improvements

Standing Committee on Policy and Strategic Priorities. Mount Pleasant Industrial Area Parking Strategy and Access Improvements POLICY REPORT Report Date: April 23, 2018 Contact: Lon LaClaire Contact No.: 604.873.7722 RTS No.: 9944 VanRIMS No.: 08-2000-20 Meeting Date: May 16, 2018 TO: FROM: SUBJECT: Standing Committee on Policy

More information

A living laboratory on the cutting edge of Enterprise Scrum

A living laboratory on the cutting edge of Enterprise Scrum Who We Are Sc rumlab A living laboratory on the cutting edge of Enterprise Scrum 2 Angela Johnson Certified Scrum Trainer Chief Change Officer Collaborative Leadership Team Scrum Inc Midwest Partner 22+

More information

Nuclear Division. Symposium Grand Targhee, Wyoming. 1 September 26, 2018 Curtiss-Wright

Nuclear Division. Symposium Grand Targhee, Wyoming. 1 September 26, 2018 Curtiss-Wright Nuclear Division Symposium 2018 Grand Targhee, Wyoming 1 September 26, 2018 Curtiss-Wright Introduction 2 August 2, 2018 2018 Curtiss-Wright The Electric Power Landscape is Changing DIGITALIZATION STORAGE

More information

Visual Traffic Jam Analysis Based on Trajectory Data

Visual Traffic Jam Analysis Based on Trajectory Data Visual Traffic Jam Analysis Based on Trajectory Data Zuchao Wang, Min Lu, Xiaoru Yuan, Peking University Junping Zhang, Fudan University Huub van de Wetering, Technische Universiteit Eindhoven Introduction

More information

NORTH TURNAROUND. Recommended Design: Expand the existing transit terminal

NORTH TURNAROUND. Recommended Design: Expand the existing transit terminal NORTH TURNAROUND Recommended Design: Expand the existing transit terminal Feedback from stakeholders and the public: Make it easy to transfer between local and Rapid Transit service Why is this design

More information

Neural Nets Using Backpropagation. Chris Marriott Ryan Shirley CJ Baker Thomas Tannahill

Neural Nets Using Backpropagation. Chris Marriott Ryan Shirley CJ Baker Thomas Tannahill Neural Nets Using Backpropagation Chris Marriott Ryan Shirley CJ Baker Thomas Tannahill Agenda Review of Neural Nets and Backpropagation Backpropagation: The Math Advantages and Disadvantages of Gradient

More information

Nicolas Tricot & François Esch June 14th 2017

Nicolas Tricot & François Esch June 14th 2017 Nicolas Tricot & François Esch June 14th 2017 The adventure of the BlaBlaCar team in its quest to the holy grail of Agility, from it s missguided Scrum beginning to the temple of hidden Kanban wisdom,

More information

AGA Swiss McMahon Pairing Protocol Standards

AGA Swiss McMahon Pairing Protocol Standards AGA Swiss McMahon Pairing Protocol Standards Final Version 1: 2009-04-30 This document describes the Swiss McMahon pairing system used by the American Go Association (AGA). For questions related to user

More information

Roundabouts In Colorado

Roundabouts In Colorado Roundabouts In Colorado ABSTRACT The first modern roundabout in Colorado was built in Colorado Springs in 1983. The construction of roundabouts in Vail and Avon, Colorado in the mid 1990 s aroused the

More information

beestanbul RoboCup 3D Simulation League Team Description Paper 2012

beestanbul RoboCup 3D Simulation League Team Description Paper 2012 beestanbul RoboCup 3D Simulation League Team Description Paper 2012 Baris Demirdelen, Berkay Toku, Onuralp Ulusoy, Tuna Sonmez, Kubra Ayvaz, Elif Senyurek, and Sanem Sariel-Talay Artificial Intelligence

More information

OIMB GK12 CURRICULUM

OIMB GK12 CURRICULUM 2 nd Grade 45 minutes SAND DUNES Oregon Science Content Standards: 2.1 Structure and Function: Living and non-living things vary throughout the natural world. 2.2 Interaction and Change: Living and non-living

More information

Impact of Climate Change on Bees in the Eastern Forest: Diversity and Adaptations of Organisms

Impact of Climate Change on Bees in the Eastern Forest: Diversity and Adaptations of Organisms Impact of Climate Change on Bees in the Eastern Forest: Diversity and Adaptations of Organisms Region: Eastern Forests and Woodlands Grade Level(s): 7-9 Time Required: 2 50 minute class periods Focus Question(s):

More information

Coupling distributed and symbolic execution for natural language queries. Lili Mou, Zhengdong Lu, Hang Li, Zhi Jin

Coupling distributed and symbolic execution for natural language queries. Lili Mou, Zhengdong Lu, Hang Li, Zhi Jin Coupling distributed and symbolic execution for natural language queries Lili Mou, Zhengdong Lu, Hang Li, Zhi Jin doublepower.mou@gmail.com Outline Introduction to neural enquirers Coupled approach of

More information

2017 Float and Sensor Workshop. Conveners: Brian King, Steve Riser, Susan Wijffels Local Host: Steve Riser, U. Washington

2017 Float and Sensor Workshop. Conveners: Brian King, Steve Riser, Susan Wijffels Local Host: Steve Riser, U. Washington 2017 Float and Sensor Workshop Conveners: Brian King, Steve Riser, Susan Wijffels Local Host: Steve Riser, U. Washington Objectives The goals of the workshop were to Increase the overall efficiency of

More information

2016 Tennis Regulations League Section

2016 Tennis Regulations League Section 18. APPLICABILITY System shall be used at all championship levels and is recommended for local league. A. Section Adult Programs Committee The Section Adult Programs Committee shall consist of a Chairman,

More information

Product Decomposition in Supply Chain Planning

Product Decomposition in Supply Chain Planning Mario R. Eden, Marianthi Ierapetritou and Gavin P. Towler (Editors) Proceedings of the 13 th International Symposium on Process Systems Engineering PSE 2018 July 1-5, 2018, San Diego, California, USA 2018

More information

Caltrain Bike Parking Management Plan

Caltrain Bike Parking Management Plan Caltrain Bike Parking Management Plan Bicycle Advisory Committee May 19th, 2016 Context 1 Capacity and Access Challenges Between 11% and 19% of customers make bike-based trips to and/or from system Majority

More information

838. Improved aerodynamic optimization for the design of wind turbine blades

838. Improved aerodynamic optimization for the design of wind turbine blades 838. Improved aerodynamic optimization for the design of wind turbine blades Hua-Wei Chi 1, Pey-Shey Wu 2, Kamiru Chen 3, Yue-Hua Jhuo 4, Hung-Yun Wu 5 1, 2, 3, 4 Department of Mechanical and Automation

More information

INSIDE VOLLEY TENNIS

INSIDE VOLLEY TENNIS INSIDE VOLLEY TENNIS WWW.INSIDESPORTSGAME.ORG INSIDE VOLLEY TENNIS RULES GETTING STARTED You will need 2 six-sided dice (2d6) of different colors and 2 ten-sided dice (2d10). Layout the game board with

More information

Pocatello Regional Transit Master Transit Plan Draft Recommendations

Pocatello Regional Transit Master Transit Plan Draft Recommendations Pocatello Regional Transit Master Transit Plan Draft Recommendations Presentation Outline 1. 2. 3. 4. What is the Master Transit Plan? An overview of the study Where Are We Today? Key take-aways from existing

More information

U11 Small Sided Competition Guidelines

U11 Small Sided Competition Guidelines U11 Small Sided Competition Guidelines Age and developmentally appropriate lacrosse competition for girls playing in the U11 Age Classification Our Vision We envision a future that offers people everywhere

More information

SAFE HARBOR STATEMENT

SAFE HARBOR STATEMENT SAFE HARBOR STATEMENT Except for the historical information contained herein, this presentation contains forward-looking statements that involve known and unknown risks, uncertainties and other unknown

More information

GUIDE TO ESTIMATING TOTAL ALLOWABLE CATCH USING SIZE FREQUENCY IN CATCH, EFFORT DATA, AND MPAS

GUIDE TO ESTIMATING TOTAL ALLOWABLE CATCH USING SIZE FREQUENCY IN CATCH, EFFORT DATA, AND MPAS GUIDE TO ESTIMATING TOTAL ALLOWABLE CATCH USING SIZE FREQUENCY IN CATCH, EFFORT DATA, AND MPAS Contact Rod Fujita, Director, Research and Development Oceans Program, Environmental Defense Fund 123 Mission

More information

Satoshi Yoshida and Takuya Kida Graduate School of Information Science and Technology, Hokkaido University

Satoshi Yoshida and Takuya Kida Graduate School of Information Science and Technology, Hokkaido University Satoshi Yoshida and Takuya Kida Graduate School of Information Science and Technology, Hokkaido University ompressed Pattern Matching ompressed Data Search Directly 0000 000000 Program Searching on ompressed

More information

Traffic Improvements for the Transit Oriented Development District (TODD) Meriden Public Library March 11, 2014

Traffic Improvements for the Transit Oriented Development District (TODD) Meriden Public Library March 11, 2014 Traffic Improvements for the Transit Oriented Development District (TODD) Meriden Public Library March 11, 2014 Project Overview Coordinate roadway improvements with other major projects HUB Flood Control

More information

Pedestrian Behaviour Modelling

Pedestrian Behaviour Modelling Pedestrian Behaviour Modelling An Application to Retail Movements using Genetic Algorithm Contents Requirements of pedestrian behaviour models Framework of a new model Test of shortest-path model Urban

More information

University of Notre Dame Department of Finance Economics of the Firm Spring 2012

University of Notre Dame Department of Finance Economics of the Firm Spring 2012 University of Notre Dame Department of Finance Economics of the Firm Spring 2012 Problem Set #3 Solutions 1) Consider the following version of the prisoners dilemma game (Player one s payoffs are in bold):

More information

2018 Grandville Calvin Christian Summer Camps and Descriptions:

2018 Grandville Calvin Christian Summer Camps and Descriptions: 2018 Grandville Calvin Christian Summer Camps and Descriptions: Offered: 1. Boys Basketball: Coach Ryan Stevens: 616-292-0721 2. Girls Basketball: Coach Adam Rhodes: 616-249-7321 3. 1 st -3 rd Co-ed Basketball:

More information

A Brief History of the Development of Artificial Neural Networks

A Brief History of the Development of Artificial Neural Networks A Brief History of the Development of Artificial Neural Networks Prof. Bernard Widrow Department of Electrical Engineering Stanford University Baidu July 18, 2018 Prof. Widrow @ Berkeley A Brief History

More information

3 ROADWAYS 3.1 CMS ROADWAY NETWORK 3.2 TRAVEL-TIME-BASED PERFORMANCE MEASURES Roadway Travel Time Measures

3 ROADWAYS 3.1 CMS ROADWAY NETWORK 3.2 TRAVEL-TIME-BASED PERFORMANCE MEASURES Roadway Travel Time Measures ROADWAYS Approximately 6 million trips are made in the Boston metropolitan region every day. The vast majority of these trips (80 to percent, depending on trip type) involve the use of the roadway network

More information

Basic guiding principles. Guiding principles (cont.) 4-2 Offense (setter middle or right) 5-1 Offense. Different types of offensive systems

Basic guiding principles. Guiding principles (cont.) 4-2 Offense (setter middle or right) 5-1 Offense. Different types of offensive systems Basic guiding principles The lower the skill level, the more points are scored on service aces & unforced errors (technical). The higher the skill level, the more points are scored on attacking & blocking

More information

SPE Fuel gas supply (at the flowstations and gathering centers) and artificial lift gas supply for the lift gas compressors at GC1 are

SPE Fuel gas supply (at the flowstations and gathering centers) and artificial lift gas supply for the lift gas compressors at GC1 are SPE 77659 Prudhoe Bay Oil Production Optimization: Using Virtual intelligence Techniques, Stage One: Neural Model Building Shahab D. Mohaghegh SPE, West Virginia University, Lynda A. Hutchins SPE, BP Exploration

More information

ROSE-HULMAN INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering. Mini-project 3 Tennis ball launcher

ROSE-HULMAN INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering. Mini-project 3 Tennis ball launcher Mini-project 3 Tennis ball launcher Mini-Project 3 requires you to use MATLAB to model the trajectory of a tennis ball being shot from a tennis ball launcher to a player. The tennis ball trajectory model

More information

Static Extended Trailing Edge for Lift Enhancement: Experimental and Computational Studies

Static Extended Trailing Edge for Lift Enhancement: Experimental and Computational Studies Static Extended Trailing Edge for Lift Enhancement: Experimental and Computational Studies T. Liu, J. Montefort, W. Liou Western Michigan University Kalamazoo, MI 49008 and Q. Shams NASA Langley Research

More information

Intelligent Traffic Light Control Using Distributed Multi-agent Q Learning

Intelligent Traffic Light Control Using Distributed Multi-agent Q Learning Intelligent Traffic Light Control Using Distributed Multi-agent Q Learning Ying Liu,, Lei Liu, Wei-Peng Chen Fujitsu Laboratories of America, Inc., Sunnyvale, CA, USA Electrical and Computer Engineering,

More information

The system design must obey these constraints. The system is to have the minimum cost (capital plus operating) while meeting the constraints.

The system design must obey these constraints. The system is to have the minimum cost (capital plus operating) while meeting the constraints. Computer Algorithms in Systems Engineering Spring 2010 Problem Set 6: Building ventilation design (dynamic programming) Due: 12 noon, Wednesday, April 21, 2010 Problem statement Buildings require exhaust

More information

FURY 2D Simulation Team Description Paper 2016

FURY 2D Simulation Team Description Paper 2016 FURY 2D Simulation Team Description Paper 2016 Amir Darijani 1, Aria Mostaejeran 1, Mohammad Reza Jamali 1, Aref Sayareh 1, Mohammad Javad Salehi 1, Borna Barahimi 1 1 Atomic Energy High School FurySoccerSim@gmail.com

More information

LABORATORY EXERCISE 1 CONTROL VALVE CHARACTERISTICS

LABORATORY EXERCISE 1 CONTROL VALVE CHARACTERISTICS Date: Name: LABORATORY EXERCISE 1 CONTROL VALVE CHARACTERISTICS OBJECTIVE: To demonstrate the relation between valve stem position and the fluid flow through a control valve, for both linear and equal

More information

Design and Evaluation of Adaptive Traffic Control System for Heterogeneous flow conditions. SiMTraM & CosCiCost2G

Design and Evaluation of Adaptive Traffic Control System for Heterogeneous flow conditions. SiMTraM & CosCiCost2G Design and Evaluation of Adaptive Traffic Control System for Heterogeneous flow conditions SiMTraM & CosCiCost2G Tom Mathew IIT Bombay Outline 1. Heterogeneous traffic 2. Traffic Simulation 3. Traffic

More information

U11 Small Sided Competition Guidelines

U11 Small Sided Competition Guidelines U11 Small Sided Competition Guidelines Age and developmentally appropriate lacrosse competition for boys playing in the U11 Age Classification Our Vision We envision a future that offers people everywhere

More information

APPLICATION OF PUSHOVER ANALYSIS ON EARTHQUAKE RESPONSE PREDICATION OF COMPLEX LARGE-SPAN STEEL STRUCTURES

APPLICATION OF PUSHOVER ANALYSIS ON EARTHQUAKE RESPONSE PREDICATION OF COMPLEX LARGE-SPAN STEEL STRUCTURES APPLICATION OF PUSHOVER ANALYSIS ON EARTHQUAKE RESPONSE PREDICATION OF COMPLEX LARGE-SPAN STEEL STRUCTURES J.R. Qian 1 W.J. Zhang 2 and X.D. Ji 3 1 Professor, 3 Postgraduate Student, Key Laboratory for

More information

Robust Task Execution: Procedural and Model-based. Outline. Desiderata: Robust Task-level Execution

Robust Task Execution: Procedural and Model-based. Outline. Desiderata: Robust Task-level Execution Robust Task Execution: Procedural and Model-based Mission Goals and Environment Constraints Temporal Planner Temporal Network Solver Projective Task Expansion Initial Conditions Temporal Plan Dynamic Scheduling

More information

Irrigation System Renovation. Your golf course. Our commitment.

Irrigation System Renovation. Your golf course. Our commitment. Irrigation System Renovation Your golf course. Our commitment. Improve playability and aesthetics while optimizing profits. Realize the full potential of your golf course. 10.0 8.0 6.0 4.0 2.0 0.0 Golf

More information

Case Study. PayPal s Sparkline Case Study. About Sparkline

Case Study. PayPal s Sparkline Case Study. About Sparkline Our People. Your Solution. PayPal s Sparkline Case Study Case Study PayPal, an ebay subsidiary, is a digital payment provider offering flexible payment methods with more than 81 million active accounts

More information

REACHING EVERY KIWI SKY NETWORK TELEVISION ANNUAL RESULTS 2018

REACHING EVERY KIWI SKY NETWORK TELEVISION ANNUAL RESULTS 2018 REACHING EVERY KIWI SKY NETWORK TELEVISION ANNUAL RESULTS 2018 125.0 120.0 UNDERLYING NET PROFIT 115.0 Millions 110.0 116.3 119.3 105.0 100.0 2017 2018 Page 2 OPERATING COSTS Millions 601.2 553.9 2017

More information

Adaptability and Fault Tolerance

Adaptability and Fault Tolerance Adaptability and Fault Tolerance Rogério de Lemos University of Kent, UK Context: self-* and dependability; Focus: adaptability and fault tolerance; State of the art; Conclusions; Rogério de Lemos ICSE

More information

World Handicap System Club Information Session

World Handicap System Club Information Session World Handicap System Club Information Session Introductions & Welcome County Update.. WORLD HANDICAP SYSTEM February 2018 THE STORY SO FAR 2011 The R&A and USGA start discussions regarding one handicap

More information

Introduction to Pattern Recognition

Introduction to Pattern Recognition Introduction to Pattern Recognition Jason Corso SUNY at Buffalo 19 January 2011 J. Corso (SUNY at Buffalo) Introduction to Pattern Recognition 19 January 2011 1 / 32 Examples of Pattern Recognition in

More information

MARKET AND CAPACITY UPDATE. Matthew Marsh September 2016

MARKET AND CAPACITY UPDATE. Matthew Marsh September 2016 MARKET AND CAPACITY UPDATE Matthew Marsh September 2016 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008

More information

A Big Data approach to understand Central Banks Big Data Spain 2018

A Big Data approach to understand Central Banks Big Data Spain 2018 A Big Data approach to understand Central Banks / 1 A Big Data approach to understand Central Banks Big Data Spain 2018 November 2018 A Big Data approach to understand Central Banks / 2 Summary 01 Why

More information