Sharing the How (and not the What )

Size: px
Start display at page:

Download "Sharing the How (and not the What )"

Transcription

1 Sharing the How (and not the What ) Percy Liang NIPS Workshop on Transfer Learning December 12, 2015

2 What is shared between tasks? Task A Task B 1

3 What is shared between tasks? Task A Task B 1

4 detecting trucks detecting cars 2

5 detecting trucks detecting cars sharing low-level representations ( what ) 2

6 tallest mountain in Quebec most popular restaurant in Palo Alto 3

7 tallest mountain in Quebec most popular restaurant in Palo Alto sharing abstractions ( how ) 3

8 Natural language interfaces 4

9 Natural language interfaces Tasks parametrized by natural language: User: Find me the best restaurants in Montreal. Computer: Toqué, Gibby s restaurant, Le Local,... 4

10 Natural language interfaces Tasks parametrized by natural language: User: Find me the best restaurants in Montreal. Computer: Toqué, Gibby s restaurant, Le Local,... User: Find me speakers at the transfer learning workshop. Computer: Bengio, Ben-David, Darrell, Liang, Mohri, Pontil, Salakhutdinov, Yang 4

11 Natural language interfaces Tasks parametrized by natural language: User: Find me the best restaurants in Montreal. Computer: Toqué, Gibby s restaurant, Le Local,... User: Find me speakers at the transfer learning workshop. Computer: Bengio, Ben-David, Darrell, Liang, Mohri, Pontil, Salakhutdinov, Yang Background: semantic parsing in NLP [Mooney, Artzi, Kwiatkowski, Zettlemoyer, Collins, Roth, Berant, Liang, etc.] 4

12 Outline Program induction Zero-shot entity extraction Question answering on new tables 5

13 Program induction [Liang et al., 2010, ICML] I like programs, but I wish programs would just program themselves since I don t like programming. I like <i>programs</i>, but I wish <i>programs</i> would just <i>program</i> themselves since I don t like <i>programming</i>. 6

14 Program induction [Liang et al., 2010, ICML] I like programs, but I wish programs would just program themselves since I don t like programming. I like <i>programs</i>, but I wish <i>programs</i> would just <i>program</i> themselves since I don t like <i>programming</i>. Goal: Programming by Demonstration [Lau et al. 2003; Liang et al. 2010; Gulwani et al. 2011] If the user demonstrates italicizing the first occurrence, can we generalize to the remaining? 6

15 Program induction [Liang et al., 2010, ICML] I like programs, but I wish programs would just program themselves since I don t like programming. I like <i>programs</i>, but I wish <i>programs</i> would just <i>program</i> themselves since I don t like <i>programming</i>. Goal: Programming by Demonstration [Lau et al. 2003; Liang et al. 2010; Gulwani et al. 2011] If the user demonstrates italicizing the first occurrence, can we generalize to the remaining? Solution: represent task by a program to be learned 1. Move to next occurrence of word with prefix program 2. Insert <i> 3. Move to end of word 4. Insert </i> 6

16 Program induction [Liang et al., 2010, ICML] I like programs, but I wish programs would just program themselves since I don t like programming. I like <i>programs</i>, but I wish <i>programs</i> would just <i>program</i> themselves since I don t like <i>programming</i>. Goal: Programming by Demonstration [Lau et al. 2003; Liang et al. 2010; Gulwani et al. 2011] If the user demonstrates italicizing the first occurrence, can we generalize to the remaining? Solution: represent task by a program to be learned 1. Move to next occurrence of word with prefix program 2. Insert <i> 3. Move to end of word 4. Insert </i> Challenge: learn from very few examples 6

17 Sharing programs [Liang et al., 2010, ICML] min(, ) max(, ) 7

18 Sharing programs [Liang et al., 2010, ICML] min(, ) max(, ) Find programs that share common subprograms. Programs do tend to share common components. Bayesian nonparametric prior over all programs 7

19 Refactoring [Liang et al., 2010, ICML] 8

20 Outline Program induction Zero-shot entity extraction Question answering on new tables 9

21 Zero-shot entity extraction [ACL 2014] Panupong (Ice) Pasupat 10

22 Semantic parsing on the web Input: query x hiking trails near Baltimore web page w 11

23 Semantic parsing on the web Input: query x hiking trails near Baltimore web page w 11

24 Semantic parsing on the web Input: query x hiking trails near Baltimore web page w 11

25 Semantic parsing on the web Input: query x hiking trails near Baltimore web page w Output: list of entities y [Avalon Super Loop, Patapsco Valley State Park,...] 11

26 [Sahuguet and Azavant, 1999; Liu et al., 2000; Crescenzi et al., 2001] Logical forms: XPath expressions html head body table h1 table tr tr tr... tr td td td td th th td td td td z = /html[1]/body[1]/table[2]/tr/td[1] 12

27 Framework hiking trails near Baltimore x w html head body

28 Framework hiking trails near Baltimore x w html head body Generation ( Z 8500) Z 13

29 Framework hiking trails near Baltimore x w html head body Generation ( Z 8500) Z Model /html[1]/body[1]/table[2]/tr/td[1] z 13

30 Framework hiking trails near Baltimore x w html head body Generation ( Z 8500) Z Model /html[1]/body[1]/table[2]/tr/td[1] z Execution [Avalon Super Loop, Patapsco Valley State Park,...] y 13

31 Features p θ (z x, w) exp{θ φ(x, w, z)} 14

32 Features p θ (z x, w) exp{θ φ(x, w, z)} Structural Features: captures context > 14

33 Features p θ (z x, w) exp{θ φ(x, w, z)} Denotation Features: captures content hiking trails near Baltimore Avalon Super Loop Patapsco Valley State Park Gunpowder Falls State Park Rachel Carson Conservation Park Union Mills Hike... > hiking trails near Baltimore Home About Baltimore Tour Pricing Contact Online Support... 14

34 Dataset airlines of italy natural causes of global warming lsu football coaches bf3 submachine guns badminton tournaments foods high in dha technical colleges in south carolina songs on glee season 5 singers who use auto tune san francisco radio stations 15

35 Dataset airlines of italy natural causes of global warming lsu football coaches 15

36 Dataset statistics 2773 examples 2269 unique queries 894 unique headwords long tail! 1483 unique web domains long tail! ( wrapper induction) 16

37 Results Baseline (Most frequent extraction predicates) Accuracy 5 17

38 Correct prediction Query: disney channel movies /html[1]/body/div[2]/div/div/div[3]/div[1]/div/div/div/div/b 18

39 Ranking error Query: doctors at emory /html/body/div[3]/div[4]/table/tbody/tr/td[2] Need better understanding of entities and categories! 19

40 Coverage error Query: hedge funds in new york /html/body/div[3]/div[3]/div[4]/.../table/tbody/tr/td[2]/a Need compositionality! 20

41 Outline Program induction Zero-shot entity extraction Question answering on new tables 21

42 Semantic parsing on tables [ACL 2015] Panupong (Ice) Pasupat 22

43 In what city did Piotr s last 1st place finish occur? 23

44 How long did it take this competitor to finish the 4x400 meter relay at Universiade in 2005? 23

45 Where was the competition held immediately before the one in Turkey? 23

46 How many times has this competitor placed 5th or better in competition? 23

47 Dataset WikiTableQuestions (2108 tables, questions) 3929 unique column headers = relations Breadth: Freebase can answer only 20% of the questions 24

48 Dataset WikiTableQuestions (2108 tables, questions) 3929 unique column headers = relations Breadth: Freebase can answer only 20% of the questions Tables in test data are not seen during training 24

49 Dataset WikiTableQuestions (2108 tables, questions) 3929 unique column headers = relations Breadth: Freebase can answer only 20% of the questions Tables in test data are not seen during training Depth: crowdsourced complex questions 13.5% 20.5% 24.5% 21.5% 20% table lookup + first, last,... + top, most,... other phenomena + next, after,... + count, total,... + arithmetic, comparison, alternative, multiple filters 24

50 Graph representation Add normalization / auxiliary edges (custom functions), push resolution to semantic parsing 25

51 Lambda DCS logical forms Entity Chicago 26

52 Lambda DCS logical forms Entity Chicago Join PlaceOfBirth.Chicago 26

53 Lambda DCS logical forms Entity Chicago Join PlaceOfBirth.Chicago Intersect Type.Person PlaceOfBirth.Chicago 26

54 Lambda DCS logical forms Entity Chicago Join PlaceOfBirth.Chicago Intersect Type.Person PlaceOfBirth.Chicago Aggregation count(type.person PlaceOfBirth.Chicago) 26

55 Lambda DCS logical forms Entity Chicago Join PlaceOfBirth.Chicago Intersect Type.Person PlaceOfBirth.Chicago Aggregation count(type.person PlaceOfBirth.Chicago) Superlative argmin(type.person PlaceOfBirth.Chicago, DateOfBirth) 26

56 Lambda DCS logical forms Entity Chicago Join PlaceOfBirth.Chicago Intersect Type.Person PlaceOfBirth.Chicago Aggregation count(type.person PlaceOfBirth.Chicago) Superlative argmin(type.person PlaceOfBirth.Chicago, DateOfBirth) Anaphora µx.type.person Children.Influence.x 26

57 Lambda DCS logical forms Entity Chicago Join PlaceOfBirth.Chicago Intersect Type.Person PlaceOfBirth.Chicago Aggregation count(type.person PlaceOfBirth.Chicago) Superlative argmin(type.person PlaceOfBirth.Chicago, DateOfBirth) Anaphora µx.type.person Children.Influence.x Variable argmax(type.person, R[λx.count(Parent.Parent.x)]) 26

58 Parsing/generation Greece held its last Summer Olympics in which year?? 2004 Year City Country Nations 1896 Athens Greece Paris France St. Louis USA Athens Greece Beijing China London UK

59 Parsing/generation Greece held its last Summer Olympics in which year? R[Index].Country.Greece 2004 Year City Country Nations 1896 Athens Greece Paris France St. Louis USA Athens Greece Beijing China London UK

60 Parsing/generation Greece held its last Summer Olympics in which year? R[Nations].Country.Greece 2004 Year City Country Nations 1896 Athens Greece Paris France St. Louis USA Athens Greece Beijing China London UK

61 Parsing/generation Greece held its last Summer Olympics in which year? argmax(country.greece, Nations) 2004 Year City Country Nations 1896 Athens Greece Paris France St. Louis USA Athens Greece Beijing China London UK

62 Parsing/generation Greece held its last Summer Olympics in which year? argmax(country.greece, Index) 2004 Year City Country Nations 1896 Athens Greece Paris France St. Louis USA Athens Greece Beijing China London UK

63 Parsing/generation Greece held its last Summer Olympics in which year?... (hundreds of logical forms later) Year City Country Nations 1896 Athens Greece Paris France St. Louis USA Athens Greece Beijing China London UK

64 Parsing/generation Greece held its last Summer Olympics in which year? R[Date].R[Year].argmax(Country.Greece, Index) 2004 Year City Country Nations 1896 Athens Greece Paris France St. Louis USA Athens Greece Beijing China London UK

65 Parsing/generation Greece held its last Summer Olympics in which year? R[Date].R[Year].R[Prev].R[Prev].argmax(Type.Row, Index) 2004 Year City Country Nations 1896 Athens Greece Paris France St. Louis USA Athens Greece Beijing China London UK

66 x: Greece held its last Summer Olympics in which year? z: R[Date].R[Year].argmax(Country.Greece, Index) y: 2004 Feature vector φ(x, z) R F : 28

67 x: Greece held its last Summer Olympics in which year? z: R[Date].R[Year].argmax(Country.Greece, Index) y: 2004 Feature vector φ(x, z) R F : Feature template Feature Value (word, predicate) (Greece,Greece) 1 (held,greece) 1 (its,greece) 1 (Greece,argmax) 1 phrase=predicate (missing predicates) missing (denotation size) size=1 1 (phrase,denotation type) (which,date) 1 (which year,date) 1 (in which,date)

68 Results IR: Train classifer to pick answer directly from table. WQ: Use logical complexity of Freebase work IR WQ Full 29

69 Examples of correct predictions What train was developed after the erlangener erprobungstrager? According to the table, what is the last title that spicy horse produced? Who finished directly after the driver who finished in 1:28.745? Which album has the highest number of sales but doesn t have a designated artist? How many districts have a population density of at lest ? 30

70 Examples of errors Unhandled operations (19%): Was there more gold medals won than silver? Which movies were number 1 for at least two consecutive weeks? How many titles had the same author listed as the illustrator? 31

71 Examples of errors Unhandled operations (19%): Was there more gold medals won than silver? Which movies were number 1 for at least two consecutive weeks? How many titles had the same author listed as the illustrator? Table normalization: In what city did Piotr s last 1st place finish occur?...[bangkok, Thailand]... How long does the show defcon 3 last?...[2pm-3pm]... 31

72 Examples of errors Unhandled operations (19%): Was there more gold medals won than silver? Which movies were number 1 for at least two consecutive weeks? How many titles had the same author listed as the illustrator? Table normalization: In what city did Piotr s last 1st place finish occur?...[bangkok, Thailand]... How long does the show defcon 3 last?...[2pm-3pm]... Lexical mismatch: Mexican Mexico, airplane Model 31

73 Starting from zero examples... 32

74 Zero inputs! [Wang/Berant/Liang, ACL 2015] Traditional approach: Ad-hoc (incomplete) papers published in 2015 who wrote the origin of species? 33

75 Zero inputs! [Wang/Berant/Liang, ACL 2015] Traditional approach: Ad-hoc (incomplete), Annotation: understand + answer (expensive) papers published in 2015 Type.Article PublicationDate.2015 who wrote the origin of species? R[Author].OriginOfSpecies 33

76 Zero inputs! [Wang/Berant/Liang, ACL 2015] Traditional approach: Ad-hoc (incomplete), Annotation: understand + answer (expensive) papers published in 2015 Type.Article PublicationDate.2015 who wrote the origin of species? R[Author].OriginOfSpecies New approach: Grammar (complete) arg max(type.article, PublicationDate) article with the largest publication date arg max(type.person, R[λx.Count(Type.Article Author.x)]) person that is author of the most number of article 33

77 Zero inputs! [Wang/Berant/Liang, ACL 2015] Traditional approach: Ad-hoc (incomplete), Annotation: understand + answer (expensive) papers published in 2015 Type.Article PublicationDate.2015 who wrote the origin of species? R[Author].OriginOfSpecies New approach: Grammar (complete), Annotation: understand (cheap) arg max(type.article, PublicationDate) article with the largest publication date what is the newest published article? arg max(type.person, R[λx.Count(Type.Article Author.x)]) person that is author of the most number of article who has published the most articles? 33

78 On-the-job learning [NIPS 2015] 34

79 On-the-job learning [NIPS 2015] Maintain high accuracy Diminishing costs 35

80 Final remarks... 36

81 What is shared between tasks? Task A Task B 37

82 What is shared between tasks? Task A programs Task B 37

83 Task 1: input representation abstraction output Task 2: input representation abstraction output 38

84 Parting words Programs allow transferring abstractions (think Chess/Go, analogies) Task parametrized by natural language (and examples) More general problem: starting from zero examples 39

85 Code and data Funding Google Microsoft DARPA Sloan Foundation Thank you! 40

Learning Latent Programs for Question Answering

Learning Latent Programs for Question Answering Learning Latent Programs for Question Answering Percy Liang Stanford University ICLR May 8, 2015 Goals Introduce a new challenge task for representation learning. 1 Goals Introduce a new challenge task

More information

Section 5 Critiquing Data Presentation - Teachers Notes

Section 5 Critiquing Data Presentation - Teachers Notes Topics from GCE AS and A Level Mathematics covered in Sections 5: Interpret histograms and other diagrams for single-variable data Select or critique data presentation techniques in the context of a statistical

More information

EVALITA 2011 The News People Search Task: Evaluating Cross-document Coreference Resolution of Named Person Entities in Italian News

EVALITA 2011 The News People Search Task: Evaluating Cross-document Coreference Resolution of Named Person Entities in Italian News EVALITA 2011 The News People Search Task: Evaluating Cross-document Coreference Resolution of Named Person Entities in Italian News L. Bentivogli, A. Marchetti, E. Pianta Outline Introduction and Related

More information

Lecture 10: Generation

Lecture 10: Generation Lecture 10: Generation Overview of Natural Language Generation An extended example: cricket reports Learning from existing text Overview of Natural Language Generation Generation Generation from what?!

More information

Using Perceptual Context to Ground Language

Using Perceptual Context to Ground Language Using Perceptual Context to Ground Language David Chen Joint work with Joohyun Kim, Raymond Mooney Department of Computer Sciences, University of Texas at Austin 2009 IBM Statistical Machine Learning and

More information

AUSTRALIAN TEAMS OVER TIME

AUSTRALIAN TEAMS OVER TIME LEVEL Upper primary AUSTRALIAN TEAMS OVER TIME DESCRIPTION In these activities, students learn about the number of athletes who have represented Australia in the Olympics, with a focus on the previous

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

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

CEFR A2 STEP TO. Elementary Student Book. Revised & Updated. Offi cial preparation material for Anglia ESOL International Examinations.

CEFR A2 STEP TO. Elementary Student Book. Revised & Updated. Offi cial preparation material for Anglia ESOL International Examinations. CEFR A2 STEP TO Elementary Student Book Revised & Updated Offi cial preparation material for Anglia ESOL International Examinations John Ross Step To Elementary Student Book Developed and Published by:

More information

Attacking and defending neural networks. HU Xiaolin ( 胡晓林 ) Department of Computer Science and Technology Tsinghua University, Beijing, China

Attacking and defending neural networks. HU Xiaolin ( 胡晓林 ) Department of Computer Science and Technology Tsinghua University, Beijing, China Attacking and defending neural networks HU Xiaolin ( 胡晓林 ) Department of Computer Science and Technology Tsinghua University, Beijing, China Outline Background Attacking methods Defending methods 2 AI

More information

Dynamic Cluster-Based Over-Demand Prediction in Bike Sharing Systems

Dynamic Cluster-Based Over-Demand Prediction in Bike Sharing Systems Dynamic Cluster-Based Over-Demand Prediction in Bike Sharing Systems Longbiao Chen, Daqing Zhang, Leye Wang, Dingqi Yang, Xiaojuan Ma, Shijian Li, Gang Pan, Thi-Mai-Trang Nguyen, Jérémie Jakubowicz Zhejiang

More information

Home Tutor Scheme. Lesson Plan. Topic: OLYMPIC GAMES

Home Tutor Scheme. Lesson Plan. Topic: OLYMPIC GAMES Home Tutor Scheme Lesson Plan Topic: OLYMPIC GAMES 1. INTRODUCTION & CONVERSATION Warm-up questions About the Olympics 2. QUESTION & ANSWER Sporting equipment 3. VOCABULARY Sport & Olympic vocabulary practice

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

ALL ABOUT THE 2016 RIO SUMMER GAMES

ALL ABOUT THE 2016 RIO SUMMER GAMES ALL ABOUT THE 2016 RIO SUMMER GAMES ALL ABOUT THE 2016 RIO SUMMER GAMES The 2016 summer games in rio VENEZUELA COLOMBIA ATLANTIC OCEAN PERU RECIFE PACIFIC OCEAN BOLIVIA BRASILIA RIO DE JANEIRO A FIRST

More information

Safety Assessment of Installing Traffic Signals at High-Speed Expressway Intersections

Safety Assessment of Installing Traffic Signals at High-Speed Expressway Intersections Safety Assessment of Installing Traffic Signals at High-Speed Expressway Intersections Todd Knox Center for Transportation Research and Education Iowa State University 2901 South Loop Drive, Suite 3100

More information

Prokopios Chatzakis, National and Kapodistrian University of Athens, Faculty of Physical Education and Sport Science 1

Prokopios Chatzakis, National and Kapodistrian University of Athens, Faculty of Physical Education and Sport Science 1 Differences between geographic areas (continents) in the distribution of medals at the Beijing Olympic Games 2008 and at the London Olympic Games. Prokopios Chatzakis, National and Kapodistrian University

More information

Object Recognition. Selim Aksoy. Bilkent University

Object Recognition. Selim Aksoy. Bilkent University Image Classification and Object Recognition Selim Aksoy Department of Computer Engineering Bilkent University saksoy@cs.bilkent.edu.tr Image classification Image (scene) classification is a fundamental

More information

Pedestrian Demand Modeling: Evaluating Pedestrian Risk Exposures

Pedestrian Demand Modeling: Evaluating Pedestrian Risk Exposures Pedestrian Demand Modeling: Evaluating Pedestrian Risk Exposures Kelly J. Clifton National Center for Smart Growth University of Maryland May 19, 2008 Study Team University of Maryland National Center

More information

Open Research Online The Open University s repository of research publications and other research outputs

Open Research Online The Open University s repository of research publications and other research outputs Open Research Online The Open University s repository of research publications and other research outputs Developing an intelligent table tennis umpiring system Conference or Workshop Item How to cite:

More information

A THESIS SUBMITTED TO THE FACULTY OF GRADUATE SCHOOL OF THE UNIVERSITY OF MINNESOTA

A THESIS SUBMITTED TO THE FACULTY OF GRADUATE SCHOOL OF THE UNIVERSITY OF MINNESOTA Semantic Parsing for Automatic Generation of SQL Queries using Adaptive Boosting A THESIS SUBMITTED TO THE FACULTY OF GRADUATE SCHOOL OF THE UNIVERSITY OF MINNESOTA BY Rajesh Tripurneni IN PARTIAL FULFILLMENT

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

FIG: 27.1 Tool String

FIG: 27.1 Tool String Bring up Radioactive Tracer service. Click Acquisition Box - Edit - Tool String Edit the tool string as necessary to reflect the tool string being run. This is important to insure proper offsets, filters,

More information

Exploring the NFL. Introduction. Data. Analysis. Overview. Alison Smith <alison dot smith dot m at gmail dot com>

Exploring the NFL. Introduction. Data. Analysis. Overview. Alison Smith <alison dot smith dot m at gmail dot com> Exploring the NFL Alison Smith Introduction The National Football league began in 1920 with 12 teams and has grown to 32 teams broken into 2 leagues and 8 divisions.

More information

2600T Series Pressure Transmitters Plugged Impulse Line Detection Diagnostic. Pressure Measurement Engineered solutions for all applications

2600T Series Pressure Transmitters Plugged Impulse Line Detection Diagnostic. Pressure Measurement Engineered solutions for all applications Application Description AG/266PILD-EN Rev. C 2600T Series Pressure Transmitters Plugged Impulse Line Detection Diagnostic Pressure Measurement Engineered solutions for all applications Increase plant productivity

More information

Electromyographic (EMG) Decomposition. Tutorial. Hamid R. Marateb, PhD; Kevin C. McGill, PhD

Electromyographic (EMG) Decomposition. Tutorial. Hamid R. Marateb, PhD; Kevin C. McGill, PhD Electromyographic (EMG) Decomposition Tutorial Hamid R. Marateb, PhD; Kevin C. McGill, PhD H. Marateb is with the Biomedical Engineering Department, Faculty of Engineering, the University of Isfahan, Isfahan,

More information

An Architectural Approach for Improving Availability in Web Services

An Architectural Approach for Improving Availability in Web Services An Architectural Approach for Improving Availability in Web Services Evangelos Parchas and Rogério de Lemos Computing Laboratory - University of Kent at Canterbury, UK Motivation Architectural pattern

More information

Seman&c Learning. Hanna Hajishirzi. (Some slides taken from semantic parsing tutorial)

Seman&c Learning. Hanna Hajishirzi. (Some slides taken from semantic parsing tutorial) Seman&c Learning Hanna Hajishirzi (Some slides taken from semantic parsing tutorial) Outline Semantics Semantic Parsing Grounded Language Acquisition Seman&c Parsing Texas borders Kansas. next-to(tex,kan)

More information

EIGHTLIFTING: comparing three editions of the Olympic Games. Antonio Urso

EIGHTLIFTING: comparing three editions of the Olympic Games. Antonio Urso Antonio Urso ANTONIO URSO President of European and Italian Weighting Federation EIGHTLIFTING: comparing three editions of the Olympic Games The London Olympic Games have come and gone and of weighting

More information

Optimizing positional scoring rules for rank aggregation

Optimizing positional scoring rules for rank aggregation Optimizing positional scoring rules for rank aggregation Ioannis Caragiannis Xenophon Chatzigeorgiou George Krimpas Alexandros Voudouris University of Patras AAAI 2017 An application Find a pizza place

More information

BALLGAME: A Corpus for Computational Semantics

BALLGAME: A Corpus for Computational Semantics BALLGAME: A Corpus for Computational Semantics Ezra Keshet, Terry Szymanski, and Stephen Tyndall University of Michigan E-mail: {ekeshet,tdszyman,styndall}@umich.edu Abstract In this paper, we describe

More information

Automated Proactive Road Safety Analysis

Automated Proactive Road Safety Analysis Transportation Research At McGill Seminar Nicolas Saunier nicolas.saunier@polymtl.ca November 25 th 2010 Outline 1 2 for 3 using Video Data 4 Using Microscopic Data 5 A World Health Issue Over 1.2 million

More information

Analyzing football matches using relational performance data

Analyzing football matches using relational performance data Analyzing football matches using relational performance data Jan Van Haaren 7 June 2012 Analyzing football matches using relational performance data Recent evolutions in football Restrictions of the traditional

More information

Review of A Detailed Investigation of Crash Risk Reduction Resulting from Red Light Cameras in Small Urban Areas by M. Burkey and K.

Review of A Detailed Investigation of Crash Risk Reduction Resulting from Red Light Cameras in Small Urban Areas by M. Burkey and K. Review of A Detailed Investigation of Crash Risk Reduction Resulting from Red Light Cameras in Small Urban Areas by M. Burkey and K. Obeng Sergey Y. Kyrychenko Richard A. Retting November 2004 Mark Burkey

More information

The Aiken/Widom Family Year Off

The Aiken/Widom Family Year Off The Aiken/Widom Family Year Off Original Plan 2000 (Emily age 3, Tim 5) Decided when kids turned 10 and 12 we d take a year off and sail around the world Soon learned 6 years is more typical for a circumnavigation

More information

Exemplar for Internal Achievement Standard. Mathematics and Statistics Level 1

Exemplar for Internal Achievement Standard. Mathematics and Statistics Level 1 Exemplar for Internal Achievement Standard Mathematics and Statistics Level 1 This exemplar supports assessment against: Achievement Standard Investigate a given multivariate data set using the statistical

More information

Journal of Chemical and Pharmaceutical Research, 2014, 6(3): Research Article

Journal of Chemical and Pharmaceutical Research, 2014, 6(3): Research Article Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research 2014 6(3):304-309 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 World men sprint event development status research

More information

FIG World Cup Competition ID International Youths Competition AG 12-14/ AG FIG Registered ID 6433 International Youths Competition AG 9-11

FIG World Cup Competition ID International Youths Competition AG 12-14/ AG FIG Registered ID 6433 International Youths Competition AG 9-11 BOROVETS AEROBICS FIG WORLD CUP FIG World Cup Competition ID 6362 BOROVETS CUP AEROBICS OPEN 2014 International Youths Competition AG 12-14/ AG 15-17 FIG Registered ID 6433 International Youths Competition

More information

Measuring and predicting success. Simon Shibli

Measuring and predicting success. Simon Shibli Measuring and predicting success Simon Shibli Presentation Outline 1. Background context 2. The distribution of Olympic success 3. The distribution of Olympic talent 4. Measuring performance 5. Linking

More information

Unit 6, Lesson 1: Organizing Data

Unit 6, Lesson 1: Organizing Data Unit 6, Lesson 1: Organizing Data 1. Here is data on the number of cases of whooping cough from 1939 to 1955. a. Make a new table that orders the data by year. year number of cases 1941 222,202 1950 120,718

More information

Did You Know? The first Olympic Games was held in 776BC. An illustration of the Ancient Olympic Games. Teaching Packs - Ancient Greece - Page 1

Did You Know? The first Olympic Games was held in 776BC. An illustration of the Ancient Olympic Games. Teaching Packs - Ancient Greece - Page 1 Sport and athletics were a very important part of Ancient Greek culture. Many local competitions were held and there were also four large events. These were the Olympic, Pythian, Isthmian and Nemean Games

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

Gender Equality in Sport Commission Croatian Olympic Committee

Gender Equality in Sport Commission Croatian Olympic Committee Council of Europe Gender Equality Commission Strasbourg, 11 13 April 2018 Gender Equality in Sport Commission Croatian Olympic Committee Gordana Borko, M.A. Croatian Olympic Committee Women at the Olympic

More information

#19 MONITORING AND PREDICTING PEDESTRIAN BEHAVIOR USING TRAFFIC CAMERAS

#19 MONITORING AND PREDICTING PEDESTRIAN BEHAVIOR USING TRAFFIC CAMERAS #19 MONITORING AND PREDICTING PEDESTRIAN BEHAVIOR USING TRAFFIC CAMERAS Final Research Report Luis E. Navarro-Serment, Ph.D. The Robotics Institute Carnegie Mellon University November 25, 2018. Disclaimer

More information

Facts Take Shape part 1

Facts Take Shape part 1 Facts Take Shape part 1 Did You Know? A dodecahedron is a three-dimensional figure with twelve faces. A Information in The World Almanac for Kids comes in many different shapes and forms, including lists,

More information

High-Resolution Measurement-Based Phase-Resolved Prediction of Ocean Wavefields

High-Resolution Measurement-Based Phase-Resolved Prediction of Ocean Wavefields DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. High-Resolution Measurement-Based Phase-Resolved Prediction of Ocean Wavefields Dick K.P. Yue Center for Ocean Engineering

More information

Iteration: while, for, do while, Reading Input with Sentinels and User-defined Functions

Iteration: while, for, do while, Reading Input with Sentinels and User-defined Functions Iteration: while, for, do while, Reading Input with Sentinels and User-defined Functions This programming assignment uses many of the ideas presented in sections 6 and 7 of the course notes. You are advised

More information

Estimating Paratransit Demand Forecasting Models Using ACS Disability and Income Data

Estimating Paratransit Demand Forecasting Models Using ACS Disability and Income Data Estimating Paratransit Demand Forecasting Models Using ACS Disability and Income Data Presenter: Daniel Rodríguez Román University of Puerto Rico, Mayagüez Co-author: Sarah V. Hernandez University of Arkansas,

More information

Displaying Quantitative (Numerical) Data with Graphs

Displaying Quantitative (Numerical) Data with Graphs Displaying Quantitative (Numerical) Data with Graphs DOTPLOTS: One of the simplest graphs to construct and interpret is a dotplot. Each data value is shown as a dot above its location on a number line.

More information

Recognition of Tennis Strokes using Key Postures

Recognition of Tennis Strokes using Key Postures ISSC 2010, UCC, Cork, June 23 24 Recognition of Tennis Strokes using Key Postures Damien Connaghan, Ciarán Ó Conaire, Philip Kelly, Noel E. O Connor CLARITY: Centre for Sensor Web Technologies Dublin City

More information

DEPARTMENT OF THE NAVY DIVISION NEWPORT OFFICE OF COUNSEL PHONE: FAX: DSN:

DEPARTMENT OF THE NAVY DIVISION NEWPORT OFFICE OF COUNSEL PHONE: FAX: DSN: IMAVSBA WARFARE CENTERS NEWPORT DEPARTMENT OF THE NAVY NAVAL UNDERSEA WARFARE CENTER DIVISION NEWPORT OFFICE OF COUNSEL PHONE: 401 832-3653 FAX: 401 832-4432 DSN: 432-3653 Attorney Docket No. 85031 Date:

More information

4According to professional regulations, a baseball bat

4According to professional regulations, a baseball bat Mixed Numbers MODELING IMPROPER FRACTIONS In Power Players on page 4, you practiced dividing mixed numbers by converting them into improper fractions (fractions in which the numerator is greater than the

More information

At each type of conflict location, the risk is affected by certain parameters:

At each type of conflict location, the risk is affected by certain parameters: TN001 April 2016 The separated cycleway options tool (SCOT) was developed to partially address some of the gaps identified in Stage 1 of the Cycling Network Guidance project relating to separated cycleways.

More information

A Study of Olympic Winning Times

A Study of Olympic Winning Times Connecting Algebra 1 to Advanced Placement* Mathematics A Resource and Strategy Guide Updated: 05/15/ A Study of Olympic Winning Times Objective: Students will graph data, determine a line that models

More information

RSKtools for Matlab processing RBR data

RSKtools for Matlab processing RBR data Table of Contents Introduction... 1 RSKtools help... 1 Getting set up... 1 Remove atmospheric pressure from measured total pressure... 2 Correct for A2D zero-order hold... 2 Low-pass filtering... 3 Alignment

More information

The Challenge of Major Games for Center Operations

The Challenge of Major Games for Center Operations International Forum on Elite Sport Ⅳ The Challenge of Major Games for Center Operations Takashi Kawahara MD Japan Institute of Sports Sciences Gold Medals on Asian Games Gold Medals on Asian Games 2002

More information

Past World-Class Events: Reflections on Network Reliability Issues

Past World-Class Events: Reflections on Network Reliability Issues Past World-Class Events: Reflections on Network Reliability Issues "30 Years of CQR & 20 Years of World-class Games Debriefing to CQR Presentation to: CQR 2016 Spilios Makris, PhD, CBCP May 12, 2016 Palindrome

More information

MWGen: A Mini World Generator

MWGen: A Mini World Generator MWGen: A Mini World Generator Jianqiu Xu and Ralf Hartmut Güting Database Systems for New Applications, Mathematics and Computer Science FernUniversität in Hagen, Germany July, 2012 Outline 1 Problem Description

More information

International Cycling Union. Globalization in Cycling. and. Development Strategies for Peripheral Countries

International Cycling Union. Globalization in Cycling. and. Development Strategies for Peripheral Countries International Cycling Union Globalization in Cycling and Development Strategies for Peripheral Countries July 2012 Understanding the context From Europe s historic hub to development on five continents

More information

Modeling Pedestrian Volumes on College Campuses

Modeling Pedestrian Volumes on College Campuses TRANSPORTATION RESEARCH RECORD 1405 43 Modeling Pedestrian Volumes on College Campuses LAURAL. COVE AND J. EDWIN CLARK A study was undertaken to develop a reliable method for obtaining reasonable estimates

More information

Estimating the Probability of Winning an NFL Game Using Random Forests

Estimating the Probability of Winning an NFL Game Using Random Forests Estimating the Probability of Winning an NFL Game Using Random Forests Dale Zimmerman February 17, 2017 2 Brian Burke s NFL win probability metric May be found at www.advancednflstats.com, but the site

More information

Caroline Visser, IRF Geneva. IRF World Meeting, Lisbon Wednesday 26 May 2010 INTERNATIONAL ROAD FEDERATION FEDERATION ROUTIERE INTERNATIONALE

Caroline Visser, IRF Geneva. IRF World Meeting, Lisbon Wednesday 26 May 2010 INTERNATIONAL ROAD FEDERATION FEDERATION ROUTIERE INTERNATIONALE Public-private partnerships for Urban road networks Caroline Visser, IRF Geneva Zwarts & Jansma Architects IRF World Meeting, Lisbon Wednesday 26 May 2010 Context and challenges IRF case studies Urban

More information

Development of the Coast Guard Commercial Fishing Vessel Checklist Generator. EPSS development and HPT

Development of the Coast Guard Commercial Fishing Vessel Checklist Generator. EPSS development and HPT Development of the Coast Guard Commercial Fishing Vessel Checklist Generator EPSS development and HPT Background: Congress enacted legislation that required all commercial fishing industry vessels that

More information

EVALUATION OF METHODOLOGIES FOR THE DESIGN AND ANALYSIS OF FREEWAY WEAVING SECTIONS. Alexander Skabardonis 1 and Eleni Christofa 2

EVALUATION OF METHODOLOGIES FOR THE DESIGN AND ANALYSIS OF FREEWAY WEAVING SECTIONS. Alexander Skabardonis 1 and Eleni Christofa 2 EVALUATION OF METHODOLOGIES FOR THE DESIGN AND ANALYSIS OF FREEWAY WEAVING SECTIONS Alexander Skabardonis 1 and Eleni Christofa 2 1: University of California, Berkeley, Institute of Transportation Studies,

More information

ACI_Release_Notes.txt VERSION Fixed Tank info for ELITE in Dive section 2. Fixed USB port initializing for old DC VERSION

ACI_Release_Notes.txt VERSION Fixed Tank info for ELITE in Dive section 2. Fixed USB port initializing for old DC VERSION VERSION 2.4.0 1. Fixed Tank info for ELITE in Dive section 2. Fixed USB port initializing for old DC VERSION 2.3.9 1. Fixed Dive Computer configuration section error 2. Fixed message for download/upload

More information

Assessing Australia s Innovative Capacity in the 21 st Century

Assessing Australia s Innovative Capacity in the 21 st Century Assessing Australia s Innovative Capacity in the 21 st Century Professor Joshua Gans MBS & IPRIA University of Melbourne November, 2003 This presentation is based on the National Innovative Capacity Project,

More information

Do hunting bag changes match the population trends of Turtle Dove? The case of Spain.

Do hunting bag changes match the population trends of Turtle Dove? The case of Spain. Do hunting bag changes match the population trends of Turtle Dove? The case of Spain. Lara Moreno 1, Will Peach 2, Beatriz Arroyo 1 Lara.moreno@uclm.es 1- Instituto de Investigación en Recursos Cinegéticos

More information

Examples of Carter Corrected DBDB-V Applied to Acoustic Propagation Modeling

Examples of Carter Corrected DBDB-V Applied to Acoustic Propagation Modeling Naval Research Laboratory Stennis Space Center, MS 39529-5004 NRL/MR/7182--08-9100 Examples of Carter Corrected DBDB-V Applied to Acoustic Propagation Modeling J. Paquin Fabre Acoustic Simulation, Measurements,

More information

Intelligent Decision Making Framework for Ship Collision Avoidance based on COLREGs

Intelligent Decision Making Framework for Ship Collision Avoidance based on COLREGs Intelligent Decision Making Framework for Ship Collision Avoidance based on COLREGs Seminar Trondheim June 15th 2017 Nordic Institute of Navigation Norwegian Forum for Autonomous Ships SINTEF Ocean, Trondheim

More information

Teaching Faster and Faster!

Teaching Faster and Faster! Teaching Faster and Faster! Skills: Solving problems with data in decimal form and in a double-line graph Students solve problems based on Olympic event data given in a table and in a line graph. Tasks

More information

Impact of new imaging modalities on video surveillance and invasion of privacy

Impact of new imaging modalities on video surveillance and invasion of privacy Impact of new imaging modalities on video surveillance and invasion of privacy Pavel Korshunov 25/11/14 VideoSense Winter School 2014 1 The reality today 25/11/14 - VideoSense Winter School 2014 2 Motivation

More information

How does atmospheric pressure vary? Measuring atmospheric pressure at different altitudes above sea level

How does atmospheric pressure vary? Measuring atmospheric pressure at different altitudes above sea level Objective The purpose of this activity is to study atmospheric pressure variations, as we reach higher altitudes, in order to create a hypothesis. The hypothesis will be tested by using the Labdisc air

More information

Tutorial for the. Total Vertical Uncertainty Analysis Tool in NaviModel3

Tutorial for the. Total Vertical Uncertainty Analysis Tool in NaviModel3 Tutorial for the Total Vertical Uncertainty Analysis Tool in NaviModel3 May, 2011 1. Introduction The Total Vertical Uncertainty Analysis Tool in NaviModel3 has been designed to facilitate a determination

More information

Traffic Parameter Methods for Surrogate Safety Comparative Study of Three Non-Intrusive Sensor Technologies

Traffic Parameter Methods for Surrogate Safety Comparative Study of Three Non-Intrusive Sensor Technologies Traffic Parameter Methods for Surrogate Safety Comparative Study of Three Non-Intrusive Sensor Technologies CARSP 2015 Collision Prediction and Prevention Approaches Joshua Stipancic 2/32 Acknowledgements

More information

SFMTA Annual Parking Rates & Policies Survey

SFMTA Annual Parking Rates & Policies Survey SFMTA Annual Parking Rates & Policies Survey December 2011 2011 Parking Rates and Policies Survey/ 1 Parking rates and policies survey The purpose of the survey is to track changes over time in other cities

More information

Reality Math Dot Sulock, University of North Carolina at Asheville

Reality Math Dot Sulock, University of North Carolina at Asheville Reality Math Dot Sulock, University of North Carolina at Asheville Firearm Deaths 1. Making an Excel Pie Graph Firearm Deaths in US 2000 2011 suicides 16,586 19,766 homicides 10,801 11,101 unintentional

More information

POWERING PODIUMS PARALYMPIC SPORTS NATIONAL LANDSCAPE

POWERING PODIUMS PARALYMPIC SPORTS NATIONAL LANDSCAPE POWERING PODIUMS PARALYMPIC SPORTS NATIONAL LANDSCAPE November 16, 2017 *** some of the information in this deck has been put together with OTP in preparation for CPC- OTP Summer Sport Summit INTERNATIONAL

More information

Safety impacts of pedestrian crossing configurations and other features of signalized junctions on public transport routes

Safety impacts of pedestrian crossing configurations and other features of signalized junctions on public transport routes Advancements in planning and operation of public transport Workshop 4.7.16, TRI, Technion Safety impacts of pedestrian crossing configurations and other features of signalized junctions on public transport

More information

Kevin Manaugh Department of Geography McGill School of Environment

Kevin Manaugh Department of Geography McGill School of Environment Kevin Manaugh Department of Geography McGill School of Environment Outline Why do people use active modes? Physical (Built environment) Factors Psychological Factors Empirical Work Neighbourhood Walkability

More information

Long Red, Short Green, I Got Skipped, and Why Do I Always Have To Stop Who Runs These Signals and How Do I Get Ahold Of Them?

Long Red, Short Green, I Got Skipped, and Why Do I Always Have To Stop Who Runs These Signals and How Do I Get Ahold Of Them? Long Red, Short Green, I Got Skipped, and Why Do I Always Have To Stop Who Runs These Signals and How Do I Get Ahold Of Them? A Primer on Traffic Signal Operations In Sacramento County August 21, 2014

More information

For more information, contact your Chief of Bureau demolink.ap.org

For more information, contact your Chief of Bureau demolink.ap.org For more information, contact your Chief of Bureau demolink.ap.org Information Management at the Associated Press Joel Summerlin Deputy Director, Information Standards May 2009 Taxonomies are dead! Long

More information

DRAW PRESS KIT (English version)

DRAW PRESS KIT (English version) DRAW PRESS KIT (English version) London 2012 Olympic Tournaments General information The London 2012 Olympic Tournaments for Men and Women will take place in the Olympic and the North Greenwich from 28

More information

How does atmospheric pressure vary? Measuring atmospheric pressure at different altitudes above sea level

How does atmospheric pressure vary? Measuring atmospheric pressure at different altitudes above sea level Dimension 2 Cross Cutting Concepts Dimension 1 Science and Engineering Practices FRAMEWORK FOR K-12 SCIENCE EDUCATION 2012 USA Standards Correlation The Dimension I practices listed below are called out

More information

5. Which is the root word in

5. Which is the root word in Name: Date: WEEK 22 1 Read the text and then answer the questions. Have you ever heard of judo? Judo is a martial art. It is a sport that does not use weapons. Instead, judo uses holds and body movements.

More information

Package STI. August 19, Index 7. Compute the Standardized Temperature Index

Package STI. August 19, Index 7. Compute the Standardized Temperature Index Package STI August 19, 2015 Type Package Title Calculation of the Standardized Temperature Index Version 0.1 Date 2015-08-18 Author Marc Fasel [aut, cre] Maintainer Marc Fasel A set

More information

Title: 4-Way-Stop Wait-Time Prediction Group members (1): David Held

Title: 4-Way-Stop Wait-Time Prediction Group members (1): David Held Title: 4-Way-Stop Wait-Time Prediction Group members (1): David Held As part of my research in Sebastian Thrun's autonomous driving team, my goal is to predict the wait-time for a car at a 4-way intersection.

More information

The Incremental Evolution of Gaits for Hexapod Robots

The Incremental Evolution of Gaits for Hexapod Robots The Incremental Evolution of Gaits for Hexapod Robots Abstract Gait control programs for hexapod robots are learned by incremental evolution. The first increment is used to learn the activations required

More information

Building an NFL performance metric

Building an NFL performance metric Building an NFL performance metric Seonghyun Paik (spaik1@stanford.edu) December 16, 2016 I. Introduction In current pro sports, many statistical methods are applied to evaluate player s performance and

More information

- 2 - Companion Web Site. Back Cover. Synopsis

- 2 - Companion Web Site. Back Cover. Synopsis Companion Web Site A Programmer's Introduction to C# by Eric Gunnerson ISBN: 1893115860 Apress 2000, 358 pages This book takes the C programmer through the all the details from basic to advanced-- of the

More information

Opleiding Informatica

Opleiding Informatica Opleiding Informatica Determining Good Tactics for a Football Game using Raw Positional Data Davey Verhoef Supervisors: Arno Knobbe Rens Meerhoff BACHELOR THESIS Leiden Institute of Advanced Computer Science

More information

CS 221 PROJECT FINAL

CS 221 PROJECT FINAL CS 221 PROJECT FINAL STUART SY AND YUSHI HOMMA 1. INTRODUCTION OF TASK ESPN fantasy baseball is a common pastime for many Americans, which, coincidentally, defines a problem whose solution could potentially

More information

An Empirical Analysis of the Impact of Renewable Portfolio Standards and Feed-in-Tariffs on International Markets.

An Empirical Analysis of the Impact of Renewable Portfolio Standards and Feed-in-Tariffs on International Markets. An Empirical Analysis of the Impact of Renewable Portfolio Standards and Feed-in-Tariffs on International Markets. Presentation by Greg Upton Gregory Upton Jr. Louisiana State University Sanya Carley Indiana

More information

RM-80 respiration monitor

RM-80 respiration monitor RM-80 respiration monitor User Manual September 18, 2015 0025-003M 950 North Hague Avenue Columbus, Ohio 43204-2121 USA Sales: sales@colinst.com Service: service@colinst.com Phone: (614) 276-0861 Fax:

More information

Potomac Rugby Referees Report of the Allocations Officer for 2012

Potomac Rugby Referees Report of the Allocations Officer for 2012 Potomac Rugby Referees Report of the Allocations Officer for The Allocations Officer for was Mark Handel. John Bridges assisted with most of the HS/U weekday assignments during in the northern reaches

More information

2007 Gas-Lift Workshop

2007 Gas-Lift Workshop 2007 Gas-Lift Workshop Field Application of Automation and Control Equipment by Cleon Dunham Oilfield Automation Consulting 2/11/2007 2007 Gas-Lift Workshop 1 Gas-Lift Automation & Control Equipment Outline

More information

Applied Econometrics with. Time, Date, and Time Series Classes. Motivation. Extension 2. Motivation. Motivation

Applied Econometrics with. Time, Date, and Time Series Classes. Motivation. Extension 2. Motivation. Motivation Applied Econometrics with Extension 2 Time, Date, and Time Series Classes Time, Date, and Time Series Classes Christian Kleiber, Achim Zeileis 2008 2017 Applied Econometrics with R Ext. 2 Time, Date, and

More information

Beijing Olympic/Paralympic Analysis & Trends. by Sean Scott High Performance Advisor Road to Excellence

Beijing Olympic/Paralympic Analysis & Trends. by Sean Scott High Performance Advisor Road to Excellence Beijing Olympic/Paralympic Analysis & Trends by Sean Scott High Performance Advisor Road to Excellence Move Up the Medal Tables for the Olympic & Paralympic Games Olympic Games Top 12 on the total medal

More information

5. Which word describes the tone

5. Which word describes the tone Name: Date: WEEK 16 1 Read the text and then answer the questions. Female athletes have not always been respected. Some sports only allow men to play. Many people ignore female sports. The Olympics used

More information

100-Meter Dash Olympic Winning Times: Will Women Be As Fast As Men?

100-Meter Dash Olympic Winning Times: Will Women Be As Fast As Men? 100-Meter Dash Olympic Winning Times: Will Women Be As Fast As Men? The 100 Meter Dash has been an Olympic event since its very establishment in 1896(1928 for women). The reigning 100-meter Olympic champion

More information

Play Football Video Game 2011 World Cup 2012

Play Football Video Game 2011 World Cup 2012 Play Football Video Game 2011 World Cup 2012 The official match schedule for FIFA Women's World Cup Canada 2015 Next Video Women's World Cup Final Preview It will be payback time for the U.S. women's soccer

More information

Alpe D Huez, France. Essential Facts. 250km of pistes up to 3330m. Lift pass also gives a few days skiing in other resorts including Les Deux Alpes

Alpe D Huez, France. Essential Facts. 250km of pistes up to 3330m. Lift pass also gives a few days skiing in other resorts including Les Deux Alpes Alpe D Huez, France Essential Facts 250km of pistes up to 3330m Lift pass also gives a few days skiing in other resorts including Les Deux Alpes Livelier than many French resorts Grenoble is around 1hr

More information