Beyond tagging: segmentation+labeling tasks. Intro to NLP - ETHZ - 25/03/2013

Size: px
Start display at page:

Download "Beyond tagging: segmentation+labeling tasks. Intro to NLP - ETHZ - 25/03/2013"

Transcription

1 Beyond tagging: segmentation+labeling tasks Intro to NLP - ETHZ - 25/03/2013

2 Summary Information Extraction: NER and related tasks Segmentation & Labeling: Models Features Shallow parsing Entity disambiguation Hand out: mid term exam

3 Information Extraction Goal: Identify structured data in unstructured text: Identify mentions of instances of predefined classes: names of people, location, organizations, etc. Named-entity recognition (NER) Co-reference resolution Identify and normalize temporal expressions: Normalize temporal expressions Associated events with points in time Timeline generation Relation detection and classification: Event detection

4 IE: input "Citing high fuel prices, United Airlines said Friday it has increased fares by 6$ per round trip on flights to some cities also served by lower-cost carriers. American Airlines, a unit of AMR Corp., immediately matched the move, spokesman Tim Wagner said. United, a unit of UAL Corp., said the increase took effect Thursday and applies to most routes where it competes against discount carriers, such as Chicago to Dallas and Denver to San Francisco."

5 IE: NER "Citing high fuel prices, United Airlines said Friday it has increased fares by 6$ per round trip on flights to some cities also served by lower-cost carriers. American Airlines, a unit of AMR Corp., immediately matched the move, spokesman Tim Wagner said. United, a unit of UAL Corp., said the increase took effect Thursday and applies to most routes where it competes against discount carriers, such as Chicago to Dallas and Denver to San Francisco."

6 IE: co-reference resolution "Citing high fuel prices, United Airlines1 said Friday it1 has increased fares by 6$ per round trip on flights to some cities also served by lower-cost carriers. American Airlines2, a unit of AMR Corp.3, immediately matched the move, spokesman Tim Wagner4 said. United1, a unit of UAL Corp., said the increase took effect Thursday and applies to 5 most routes where it1 competes against discount carriers, such as Chicago6 to Dallas7 and Denver8 to San Francisco9."

7 IE: temporal expressions "Citing high fuel prices, United Airlines1 said Friday it1 has increased fares by 6$ per round trip on flights to some cities also served by lower-cost carriers. American Airlines2, a unit of AMR Corp.3, immediately matched the move, spokesman Tim Wagner4 said. United1, a unit of UAL Corp., said the increase took effect Thursday and applies to 5 most routes where it1 competes against discount carriers, such as Chicago6 to Dallas7 and Denver8 to San Francisco9."

8 IE: relation extraction "Citing high fuel prices, United Airlines1 said Friday it1 [has increased fares by] 6$ per round trip on flights to some cities also served by lower-cost carriers. American Airlines2, [a unit of] AMR Corp.3, [immediately matched the move], [spokesman] Tim Wagner4 said. United1, [a unit of] UAL Corp.5, said the increase took effect Thursday and applies to most routes where it1 competes against discount carriers, such as Chicago6 to Dallas7 and Denver8 to San Francisco9."

9 IE: event extraction "Citing high fuel prices, United Airlines1 said Friday [it1 [has increased fares by] 6$ per round trip on flights to some cities also served by lower-cost carriers.]1 American Airlines2, [a unit of] AMR Corp.3, [immediately matched [the move]1], [spokesman] Tim Wagner4 said. United1, [a unit of] UAL Corp.5, said [the increase]1 took effect Thursday and applies to most routes where it1 competes against discount carriers, such as Chicago6 to Dallas7 and Denver8 to San Francisco9."

10 IE: (desired) output AIRLINE FARE-RAISE: LEAD ARLINE: UA AMOUNT: 6$ EFFECTIVE DATE: FOLLOWER: AA 1.Populate a database 2.Compare with historical stock prices

11 How? - Structured prediction: e.g., sequence models - Supervised and semi-supervised methods - Challenging problems - Limitations and new perspectives

12 Sequence classifiers Choose your favorite sequence classifier: HMM, CRF, MEMM, SVM, Perceptron,... We abstract from the specifics going forward

13 Beyond POS tagging Sequence labeling tasks: Assign one (POS) label to each word Cats/NNS love/vbp fish/nn./. Given: labeled data, sequence classifier Sequence segmentation + labeling: Information extraction, biomedical IE, shallow (partial) parsing Task: labels can span several words "U.N. Security Council tries to end Syria conflict"

14 Segmentation + labeling "U.N. Security Council tries to end Syria conflict" "U.N.ORG SecurityORG CouncilORG tries to end SyriaLOC conflict" How many organizations?

15 Segmentation + labeling "U.N. Security Council tries to end Syria conflict" "[U.N. Security Council]ORG tries to end [Syria]LOC conflict" One organization...

16 Segmentation + Labeling 1. Identify the boundaries of a segment: a. "[U.N. Security Council] tries to end Syria conflict" 2. Label the segment: a. "[U.N. Security Council]ORG tries to end Syria conflict" 3. How? a. Reduce the problem to simple labeling b. BIO encoding: split the labels in i. B-X: beginning of label X ii. I-X: inside a label X iii. O: outside a label (NULL label)

17 BIO encoding 1. Encode the data in BIO format: a. b. c. [U.N. Security council]org tries to end [Syria]LOC conflict. U.N.B-ORG SecurityI-ORG CouncilI-ORG trieso too endo SyriaB-LOC conflicto No termination ambiguity B-X->I-X same entity, new entity otherwise 2. Train and use your favorite sequence classifier as usual a. No guarantee that output will be consistent b. Set B-X -> I-Y transitions to 0 if necessary 3. Evaluate appropriately: P/R/F1

18 Features Words: a. Target token identity, stem; w=corp., sw=corp. b. Same for words within a window around target; w-1=amr.,w+1=, PoS tags: a. Shape: a. Regexp-like features; s=xxp, s+1=p Prefixes/Suffixes: a. Target token and tokens within window; pos=nnp, pos+1=, of target and neighbors; suf=., suf=p., pre=c pre=co,... Gazetteers: labeled lists of phrases (locations, cities, fir names etc.): a. gx= target is in list X; example, Tim -> gfirstname=true b. Crucial features out-of-domain c. Features on segments? SemiMM Label features: a. label-1=b-org,... b. label+1=0, (bidirectional models)

19 NER Identifying mentions (spans of text) referring to instances of a pre-defined set of classes

20 Entity ambiguity NOTE: The problem of the actual "identity" of an entity is not addressed in classic IE, unless approximated by coreference.

21 NER as sequence classification

22 Evaluation Precision/Recall/F1: micro/macro: mention/type level Correct prediction: both entity boundaries are correctly identified: [New York]GPE State vs. [New York State]GPE the label is correct: [New York State]LOC vs [New York State]GPE F1 > 90% in supervised case, in-domain! Significant degradation out-domain Domain adaptation, semi-supervised learning etc.

23 Relation extraction Relation: a set of ordered tuples over a domain E.g., President-of = {(Obama, US), (Sarkozy, France),...} 1. Identify named-entities 2. For each pair (ei,ej) a. Predic-Relation(ei,ej) [Possibly NULL] Task-specific features: 1. Text between entities: BOW 2. Syntactic structure

24 Relation Extraction Appositive constructions: part-of, is-a etc.

25 Distant supervision for RE Supervised approaches are limited Idea: exploit existing repositories such as Wikipedia (infoboxes), Freebase (relations) to bootstrap models for RE: 1. Start with seed set of pairs 2. Repeat: a. Build extraction patterns from data: b. Extract new pairs Issues: semantic drift, evaluation

26 Temporal expressions More regular patterns than in other tasks Challenges: Coverage False positives Normalization: map to interval or point in time

27 Partial parsing Goal: Identify the basic non-recursive (N/V/A/P) phrases of a sentence (chunking): flat/non-overlapping segmentation+labeling task Base phrases do not contain constituents of the same type Include head of phrase Exclude post-head modifiers "[The morning flight]np from [Denver]NP [has arrived]vp"

28 BIO encoding American Airlines, a unit of AMR Inc.

29 BIO encoding American Airlines, a unit of AMR Inc. [American Airlines]NP, [a unit]np of [AMR Inc.]NP

30 BIO encoding American Airlines, a unit of AMR Inc. [American Airlines]NP, [a unit]np of [AMR Inc.]NP AmericanB-NP AirlinesI-NP,O ao unitb-np ofo AMRB-NP Inc.I-NP

31 From Trees to Chunks [American Airlines]NP, [a unit]np of [AMR Inc.]NP

32 Partial parsing

33 PP as sequence classification

34 Limitations of NER 1. Washington was born at Haywood Farms near Oak Grove, Virginia. 2. Washington attended Yale Law School for a year and then studied at the University of Oxford. 3. Washington served as army chief of staff under William Tubman. 4. Historians laud Washington for his selection and supervision of his generals. 5. Washington was the founder of the town of Centralia, Washington.

35 Limitations of NER 1. WashingtonPER was born at Haywood Farms near Oak Grove, Virginia. 2. WashingtonPER attended Yale Law School for a year and then studied at the University of Oxford. 3. WashingtonPER served as army chief of staff under William Tubman. 4. Historians laud WashingtonPER for his selection and supervision of his generals. 5. WashingtonPER was the founder of the town of Centralia, WashingtonLOC.

36 Limitations of NER 1. WashingtonPER was born at Haywood Farms near Oak Grove, Virginia. 2. WashingtonPER attended Yale Law School for a year and then studied at the University of Oxford. 3. WashingtonPER served as army chief of staff under William Tubman. 4. Historians laud WashingtonPER for his selection and supervision of his generals. 5. WashingtonPER was the founder of the town of Centralia, WashingtonLOC. 5 different people!

37 Limitations of NER 1. WashingtonPER was born at Haywood Farms near Oak Grove, Virginia. [George] 2. WashingtonPER attended Yale Law School for a year and then studied at the University of Oxford. [George] 3. WashingtonPER served as army chief of staff under William Tubman. [George] 4. Historians laud WashingtonPER for his selection and supervision of his generals. [George] 5. WashingtonPER was the founder of the town of Centralia, WashingtonLOC. [George] With the same first name!

38 From strings to "things"

39 Polisemy A term or phrase can have multiple interpretations

40 Mercury?

41 Mercury?

42 Synonymy CAL University of California Berkeley College Univ. of Berkely U. of CA at Berkeley UC (Berkeley) Berkeley Bears U. of Ca. Berkeley U. of Cal. Bear's lair Univ. c UC Berkeley Berkeley University UCB California U. of CAL The Bear's Lair Cal Bears... The same concept can be expressed in different ways!

43 Entity disambiguation Segmentation and labeling problem Output = Wikipedia, Freebase, YAGO, etc. Updated and maintained by thousands of users Good coverage of popular topics How? Classic supervised approach dubious Exploit social aspects (link graph) One example: TagMe open house

44 Motivations

45 (a large) problem space Entities: English Wikipedia: 4 million YAGO 10 million Freebase: 40 million Web knowledge graphs: hundreds of millions Facts: Billions of tuples: link graphs, infoboxes, Freebase relations etc.

46 Input

47 Mentions identification

48 Entity disambiguation

49 Ingredients-1 A distribution of entities (Wikipedia articles) given phrases (mentions): How likely is entity k given phrase w? Assume segmentation is given as a start, e. g., via NER (can do without) Estimate from Wikipedia (anchors/titles)

50 Ingredients-2 A measure of entity similarity: How related/mutually relevant are two entities? Link graph: large graph O(100M) many pairs to evaluate efficient computation Google distance:

51 Ingredients-3 A measure of local coherence: Find entity assignments that obey documentlevel topic coherence Voting scheme: Aggregated relevance:

52 Basic TagMe Disambiguate mention i: 1. compute candidates: for all k such that: 2. choose the entity with highest lambda in the candidate set: NOTE: two hyperparameters: simple/efficient/effective

53 Input

54 Priors on mention

55 Filter with tau

56 Compute candidates

57 choose argmax P(k w)

58 Eval Evaluation on manually annotated data: CoNLL-Aida dataset Metrics: fraction of entity mentions correctly disambiguated accuracy averaged by number of documents Some results: CoNLL-Aida test-b Baseline Aida-best TagMe* *My own vanilla implementation of TagMe

59 Applications Summarization? Choose sentences/snippets containing important entities in the document? Need data annotation...

60 Summary Information Extraction: NER and related tasks Segmentation & Labeling: Models Features Shallow parsing Entity disambiguation Hand out: mid term exam Next class: lexical semantics and LDA

61 References -Book: J&M: Ch (Partial parsing), Ch. 22 (information extraction) - Entity disambiguation: TAGME: on-the-fly annotation of short text fragments (by wikipedia entities). Ferragina & Scaiella, CIKM 2010 Robust Disambiguation of Named Entities in Text. Hoffart et al. EMNLP Tools for the project: Stanford CoreNLP, NLTK, LingPipe, OpenNLP, etc.

Information Extraction slides adapted from Jim Martin s Natural Language Processing class

Information Extraction slides adapted from Jim Martin s Natural Language Processing class Information Extraction slides adapted from Jim Martin s Natural Language Processing class http://www.cs.colorado.edu/~martin/csci5832/ Motivation for Information Extraction When we covered semantic analysis,

More information

CSCI 5832 Natural Language Processing

CSCI 5832 Natural Language Processing CSCI 5832 Natural Language Processing Lecture 23 Jim Martin 4/24/07 CSCI 5832 Spring 2006 1 Today: 4/17 Finish Lexical Semantics Wrap up Information Extraction 4/24/07 CSCI 5832 Spring 2006 2 1 Inside

More information

Natural Language Processing. Dependency Parsing

Natural Language Processing. Dependency Parsing Natural Language Processing Dependency Parsing Dependency grammar The term dependency grammar does not refer to a specific grammar formalism. Rather, it refers to a specific way to describe the syntactic

More information

Knowlywood: Mining Activity Knowledge from Hollywood Narratives

Knowlywood: Mining Activity Knowledge from Hollywood Narratives Knowlywood: Mining Activity Knowledge from Hollywood Narratives Niket Tandon (MPI Informatics, Saarbruecken) Gerard de Melo (IIIS, Tsinghua Univ) Abir De (IIT Kharagpur) Gerhard Weikum (MPI Informatics,

More information

Lecture 2: Image Classification pipeline. Fei-Fei Li & Andrej Karpathy Lecture 2-1

Lecture 2: Image Classification pipeline. Fei-Fei Li & Andrej Karpathy Lecture 2-1 Lecture 2: Image Classification pipeline Fei-Fei Li & Andrej Karpathy Lecture 2-1 Image Classification: a core task in Computer Vision (assume given set of discrete labels) {dog, cat, truck, plane,...}

More information

The Importance of AIM and the Operational Concept

The Importance of AIM and the Operational Concept Global Harmonization Through Collaboration The Importance of AIM and the Operational Concept Presented By: Michael Hohm International Civil Aviation Organization Date: August 28, 2012 Flightplan Background

More information

Evaluation of Predictability as a Performance Measure

Evaluation of Predictability as a Performance Measure Evaluation of Predictability as a Performance Measure Presented by: Mark Hansen, UC Berkeley Global Challenges Workshop February 12, 2015 With Assistance From: John Gulding, FAA Lu Hao, Lei Kang, Yi Liu,

More information

Discriminate Analysis of Synthetic Vision System Equivalent Safety Metric 4 (SVS-ESM-4)

Discriminate Analysis of Synthetic Vision System Equivalent Safety Metric 4 (SVS-ESM-4) Discriminate Analysis of Synthetic Vision System Equivalent Safety Metric 4 (SVS-ESM-4) Cicely J. Daye Morgan State University Louis Glaab Aviation Safety and Security, SVS GA Discriminate Analysis of

More information

Analysis of Aircraft Separations and Collision Risk Modeling

Analysis of Aircraft Separations and Collision Risk Modeling Analysis of Aircraft Separations and Collision Risk Modeling Module s 1 Module s 2 Dr. H. D. Sherali C. Smith Dept. of Industrial and Systems Engineering Virginia Polytechnic Institute and State University

More information

Measure 67: Intermodality for people First page:

Measure 67: Intermodality for people First page: Measure 67: Intermodality for people First page: Policy package: 5: Intermodal package Measure 69: Intermodality for people: the principle of subsidiarity notwithstanding, priority should be given in the

More information

Query formalisms for relational model relational algebra

Query formalisms for relational model relational algebra lecture 6: Query formalisms for relational model relational algebra course: Database Systems (NDBI025) doc. RNDr. Tomáš Skopal, Ph.D. SS2011/12 Department of Software Engineering, Faculty of Mathematics

More information

Carbon Offsetting and Reduction Scheme for International Aviation (CORSIA):

Carbon Offsetting and Reduction Scheme for International Aviation (CORSIA): Carbon Offsetting and Reduction Scheme for International Aviation (CORSIA): Introduction & Expectations on the Submission of Emissions Monitoring Plan Presented to: By: Date: NBAA S Business Aviation Convention

More information

ANALYSIS OF THE CONTRIUBTION OF FLIGHTPLAN ROUTE SELECTION ON ENROUTE DELAYS USING RAMS

ANALYSIS OF THE CONTRIUBTION OF FLIGHTPLAN ROUTE SELECTION ON ENROUTE DELAYS USING RAMS ANALYSIS OF THE CONTRIUBTION OF FLIGHTPLAN ROUTE SELECTION ON ENROUTE DELAYS USING RAMS Akshay Belle, Lance Sherry, Ph.D, Center for Air Transportation Systems Research, Fairfax, VA Abstract The absence

More information

NextGen AeroSciences, LLC Seattle, Washington Williamsburg, Virginia Palo Alto, Santa Cruz, California

NextGen AeroSciences, LLC Seattle, Washington Williamsburg, Virginia Palo Alto, Santa Cruz, California NextGen AeroSciences, LLC Seattle, Washington Williamsburg, Virginia Palo Alto, Santa Cruz, California All Rights Reserved 1 Topics Innovation Objective Scientific & Mathematical Framework Distinctions

More information

AVIATION INVESTIGATION REPORT A03O0213 LOSS OF SEPARATION

AVIATION INVESTIGATION REPORT A03O0213 LOSS OF SEPARATION AVIATION INVESTIGATION REPORT A03O0213 LOSS OF SEPARATION NAV CANADA TORONTO AREA CONTROL CENTRE TORONTO, ONTARIO 05 AUGUST 2005 The Transportation Safety Board of Canada (TSB) investigated this occurrence

More information

Report on Geographic Scope of Market-based Measures (MBMS)

Report on Geographic Scope of Market-based Measures (MBMS) Report on Geographic Scope of Market-based Measures (MBMS) Analysis of proposed approaches for the coverage of international aviation emissions under a market-based measure This report is intended to address

More information

UC Berkeley Working Papers

UC Berkeley Working Papers UC Berkeley Working Papers Title The Value Of Runway Time Slots For Airlines Permalink https://escholarship.org/uc/item/69t9v6qb Authors Cao, Jia-ming Kanafani, Adib Publication Date 1997-05-01 escholarship.org

More information

Price-Setting Auctions for Airport Slot Allocation: a Multi-Airport Case Study

Price-Setting Auctions for Airport Slot Allocation: a Multi-Airport Case Study Price-Setting Auctions for Airport Slot Allocation: a Multi-Airport Case Study An Agent-Based Computational Economics Approach to Strategic Slot Allocation SESAR Innovation Days Bologna, 2 nd December

More information

MIT ICAT. Price Competition in the Top US Domestic Markets: Revenues and Yield Premium. Nikolas Pyrgiotis Dr P. Belobaba

MIT ICAT. Price Competition in the Top US Domestic Markets: Revenues and Yield Premium. Nikolas Pyrgiotis Dr P. Belobaba Price Competition in the Top US Domestic Markets: Revenues and Yield Premium Nikolas Pyrgiotis Dr P. Belobaba Objectives Perform an analysis of US Domestic markets from years 2000 to 2006 in order to:

More information

MODAIR: Measure and development of intermodality at AIRport. INO WORKSHOP EEC, December 6 h 2005

MODAIR: Measure and development of intermodality at AIRport. INO WORKSHOP EEC, December 6 h 2005 MODAIR: Measure and development of intermodality at AIRport INO WORKSHOP EEC, December 6 h 2005 What is intermodality? The use of different and coordinated modes of transports for one trip High Speed train

More information

USE OF 3D GIS IN ANALYSIS OF AIRSPACE OBSTRUCTIONS

USE OF 3D GIS IN ANALYSIS OF AIRSPACE OBSTRUCTIONS USE OF 3D GIS IN ANALYSIS OF AIRSPACE OBSTRUCTIONS A project by by Samuka D. W. F19/1461/2010 Supervisor; Dr D. N. Siriba 1 Background and Problem Statement The Airports in Kenya are the main link between

More information

Folktale Classification using Learning to Rank. Dong Nguyen, Dolf Trieschnigg, and Mariët Theune University of Twente

Folktale Classification using Learning to Rank. Dong Nguyen, Dolf Trieschnigg, and Mariët Theune University of Twente Folktale Classification using Learning to Rank Dong Nguyen, Dolf Trieschnigg, and Mariët Theune University of Twente Folktales Fairy tales Riddles Legends Urban legends Jokes Etc.. Folktale researchers

More information

Fusion of Flight Data with Social Media

Fusion of Flight Data with Social Media Fusion of Flight Data with Social Media STO-MP-IST-160-W1-1 2018-05-31 Dr. Axel Tanner IBM Research Zurich Säumerstrasse 4 CH-8803 Rüschlikon Dr. Albert Blarer armasuisse Science + Technology Feuerwerkerstrasse

More information

Airline Fuel Efficiency Ranking

Airline Fuel Efficiency Ranking Airline Fuel Efficiency Ranking Bo Zou University of Illinois at Chicago Matthew Elke, Mark Hansen University of California at Berkeley 06/10/2013 1 1 Outline Introduction Airline selection Mainline efficiency

More information

ADQ Regulators Working Group

ADQ Regulators Working Group ADQ Regulators Working Group Common Understanding 01/2013 Application of the provisions of Commission Regulation (EU) 73/2010 to NOTAM Edition: 1.4 Date: 20 October 2016 Reference: ARWG CU 01/2013 ARWG

More information

SPADE-2 - Supporting Platform for Airport Decision-making and Efficiency Analysis Phase 2

SPADE-2 - Supporting Platform for Airport Decision-making and Efficiency Analysis Phase 2 - Supporting Platform for Airport Decision-making and Efficiency Analysis Phase 2 2 nd User Group Meeting Overview of the Platform List of Use Cases UC1: Airport Capacity Management UC2: Match Capacity

More information

Situierte Generierung

Situierte Generierung Situierte Generierung Grundlagen der Generierung (Reiter & Dale, 1997) Konstantina Garoufi 1. November 2011 basierend auf Folien von Alexander Koller What is natural language generation (NLG)? non-linguistic

More information

ATTEND Analytical Tools To Evaluate Negotiation Difficulty

ATTEND Analytical Tools To Evaluate Negotiation Difficulty ATTEND Analytical Tools To Evaluate Negotiation Difficulty Alejandro Bugacov Robert Neches University of Southern California Information Sciences Institute ANTs PI Meeting, November, 2000 Outline 1. Goals

More information

The Combination of Flight Count and Control Time as a New Metric of Air Traffic Control Activity

The Combination of Flight Count and Control Time as a New Metric of Air Traffic Control Activity DOT/FAA/AM-98/15 Office of Aviation Medicine Washington, D.C. 20591 The Combination of Flight Count and Control Time as a New Metric of Air Traffic Control Activity Scott H. Mills Civil Aeromedical Institute

More information

STANDARDS MAP Basic Programs 1 and 2 English Language Arts Content Standards Grade Five

STANDARDS MAP Basic Programs 1 and 2 English Language Arts Content Standards Grade Five : Pearson Program Title: Pearson California and Pearson California Components: : Teacher s Edition (TE), Student Edition (SE), Practice Book (PB); : Teacher s Edition (TE), Student Edition (SE), Transparencies

More information

New Distribution Capability

New Distribution Capability New Distribution Capability Pilot Participation Terms of Reference 1 Introduction and Background This document provides the general terms of reference for pilot participation. The NDC Pilot phase commenced

More information

COMMISSION IMPLEMENTING REGULATION (EU)

COMMISSION IMPLEMENTING REGULATION (EU) 18.10.2011 Official Journal of the European Union L 271/15 COMMISSION IMPLEMENTING REGULATION (EU) No 1034/2011 of 17 October 2011 on safety oversight in air traffic management and air navigation services

More information

Impact of Landing Fee Policy on Airlines Service Decisions, Financial Performance and Airport Congestion

Impact of Landing Fee Policy on Airlines Service Decisions, Financial Performance and Airport Congestion Wenbin Wei Impact of Landing Fee Policy on Airlines Service Decisions, Financial Performance and Airport Congestion Wenbin Wei Department of Aviation and Technology San Jose State University One Washington

More information

LAX Community Noise Roundtable Aviation Noise News Update April 13, 2011

LAX Community Noise Roundtable Aviation Noise News Update April 13, 2011 LAX Community Noise Roundtable Aviation Noise News Update April 13, 2011 House Passes FAA Reauthorization Bill On April 1, 2011 the House passed a Four-Year Reauthorization Bill (HR 658) by a vote of 223-196

More information

Istanbul Technical University Air Transportation Management, M.Sc. Program Aviation Economics and Financial Analysis Module November 2014

Istanbul Technical University Air Transportation Management, M.Sc. Program Aviation Economics and Financial Analysis Module November 2014 Pricing Istanbul Technical University Air Transportation Management, M.Sc. Program Aviation Economics and Financial Analysis Module 11 14 November 2014 Outline Revenue management Fares Buckets Restrictions

More information

Revenue Recognition Implementation Issue 2.11 NOTICE

Revenue Recognition Implementation Issue 2.11 NOTICE NOTICE DISCLAIMER. This document has been compiled by the IATA Industry Accounting Working Group (IAWG), which consists of senior finance representatives from IATA member airlines. This working group s

More information

MEASURING ACCESSIBILITY TO PASSENGER FLIGHTS IN EUROPE: TOWARDS HARMONISED INDICATORS AT THE REGIONAL LEVEL. Regional Focus.

MEASURING ACCESSIBILITY TO PASSENGER FLIGHTS IN EUROPE: TOWARDS HARMONISED INDICATORS AT THE REGIONAL LEVEL. Regional Focus. Regional Focus A series of short papers on regional research and indicators produced by the Directorate-General for Regional and Urban Policy 01/2013 SEPTEMBER 2013 MEASURING ACCESSIBILITY TO PASSENGER

More information

EUROCONTROL Call Sign Similarity Project

EUROCONTROL Call Sign Similarity Project EUROCONTROL Call Sign Similarity Project Call Sign Similarity Tool (CSST) ICAO MID Region 1 st Call Sign Confusion Ad-hoc Working Group Abu Dhabi, United Arab Emirates 16-18 February 2015 Richard Lawrence

More information

TRAFFIC COMMERCIAL AIR CARRIERS

TRAFFIC COMMERCIAL AIR CARRIERS INTERNATIONAL CIVIL AVIATION ORGANIZATION AIR TRANSPORT REPORTING FORM (01/00) Page of Contact person for inquiries: Organization: Tel.: Fax: E-mail: State: Air carrier: Month(s): Year: 20 TOTAL ALL SERVICES

More information

Overview of the TREC 2009 Entity track. What is the track about? Information need. Airlines that currently use Boeing 747 planes

Overview of the TREC 2009 Entity track. What is the track about? Information need. Airlines that currently use Boeing 747 planes Overview of the TREC 29 Entity track Krisztian Balog, Arjen P. de Vries, Pavel Serdyukov, Paul Thomas, Thijs Westerveld What is the track about? The Eighteenth Text REtrieval Conference (TREC 29) Gaithersburg,

More information

Management System for Flight Information

Management System for Flight Information Management System for Flight Information COP 5611 Chantelle Erasmus Page 1 of 17 Project Phases Design Phase (100 percent complete)... 3 Initial Implementation and Testing Phase (90 percent complete)...

More information

DATA APPLICATION CATEGORY 25 FARE BY RULE

DATA APPLICATION CATEGORY 25 FARE BY RULE DATA APPLICATION CATEGORY 25 FARE BY RULE The information contained in this document is the property of ATPCO. No part of this document may be reproduced, stored in a retrieval system, or transmitted in

More information

Air Traffic Complexity: An Input-Output Approach. Amy R Pritchett, Keumjin Lee and Eric JM Feron School of Aerospace Engineering Georgia Tech

Air Traffic Complexity: An Input-Output Approach. Amy R Pritchett, Keumjin Lee and Eric JM Feron School of Aerospace Engineering Georgia Tech Air Traffic Complexity: An Input-Output Approach Amy R Pritchett, Keumjin Lee and Eric JM Feron School of Aerospace Engineering Georgia Tech Motivation Efforts to balance air traffic demand and airspace

More information

OVERVIEW OF THE FAA ADS-B LINK DECISION

OVERVIEW OF THE FAA ADS-B LINK DECISION June 7, 2002 OVERVIEW OF THE FAA ADS-B LINK DECISION Summary This paper presents an overview of the FAA decision on the ADS-B link architecture for use in the National Airspace System and discusses the

More information

Aviation Economics & Finance

Aviation Economics & Finance Aviation Economics & Finance Professor David Gillen (University of British Columbia )& Professor Tuba Toru-Delibasi (Bahcesehir University) Istanbul Technical University Air Transportation Management M.Sc.

More information

Management System for Flight Information

Management System for Flight Information Management System for Flight Information COP 5611 Chantelle Erasmus Page 1 of 9 Project Phases Design Phase (100 percent complete)... 3 Initial Implementation and Testing Phase (0 percent complete)...

More information

Emerging Technologies in BPM

Emerging Technologies in BPM Emerging Technologies in BPM Keynote: Emerging BPM Techniques & Technology Summit Building Business Capability 2012 Sandy Kemsley www.column2.com @skemsley Emerging BPM Techniques & Technologies Summit

More information

Forecast and Overview

Forecast and Overview Forecast and Overview DENVER INTERNATIONAL AIRPORT Overall goals of the (MPR): Work with DEN to refine the preferred airport development plan to guide the development over an approximate 25-year planning

More information

Monitoring & Control Tim Stevenson Yogesh Wadadekar

Monitoring & Control Tim Stevenson Yogesh Wadadekar Monitoring & Control Tim Stevenson Yogesh Wadadekar Monitoring & Control M&C is not recognised as an SPDO Domain However the volume of work carried out in 2011 justifies a Concept Design Review M&C is

More information

PREFACE. Service frequency; Hours of service; Service coverage; Passenger loading; Reliability, and Transit vs. auto travel time.

PREFACE. Service frequency; Hours of service; Service coverage; Passenger loading; Reliability, and Transit vs. auto travel time. PREFACE The Florida Department of Transportation (FDOT) has embarked upon a statewide evaluation of transit system performance. The outcome of this evaluation is a benchmark of transit performance that

More information

CURRENT SHORT-RANGE TRANSIT PLANNING PRACTICE. 1. SRTP -- Definition & Introduction 2. Measures and Standards

CURRENT SHORT-RANGE TRANSIT PLANNING PRACTICE. 1. SRTP -- Definition & Introduction 2. Measures and Standards CURRENT SHORT-RANGE TRANSIT PLANNING PRACTICE Outline 1. SRTP -- Definition & Introduction 2. Measures and Standards 3. Current Practice in SRTP & Critique 1 Public Transport Planning A. Long Range (>

More information

IRISH AVIATION AUTHORITY DUBLIN POINT MERGE. Presented by James O Sullivan PANS-OPS & AIRSPACE INSPECTOR Irish Aviation Authority

IRISH AVIATION AUTHORITY DUBLIN POINT MERGE. Presented by James O Sullivan PANS-OPS & AIRSPACE INSPECTOR Irish Aviation Authority IRISH AVIATION AUTHORITY DUBLIN POINT MERGE Presented by James O Sullivan PANS-OPS & AIRSPACE INSPECTOR Irish Aviation Authority 2012 Holding Holding Before Point Merge No Pilot anticipation of distance

More information

Department of Transportation, Federal Aviation Administration (FAA). SUMMARY: Under this notice, the FAA announces the submission deadline of

Department of Transportation, Federal Aviation Administration (FAA). SUMMARY: Under this notice, the FAA announces the submission deadline of This document is scheduled to be published in the Federal Register on 10/02/2017 and available online at https://federalregister.gov/d/2017-21045, and on FDsys.gov [4910-13] DEPARTMENT OF TRANSPORTATION

More information

COMMUNICATIONS PANEL. WG-I 20 Meeting

COMMUNICATIONS PANEL. WG-I 20 Meeting International Civil Aviation Organization CP/WG-I20/WP-04 29/02/2016 WORKING PAPER COMMUNICATIONS PANEL WG-I 20 Meeting Montreal, Canada 29 Feb 4 Mar, 2016 Agenda Item xx: Title: IP Environment for UAS

More information

Time-Space Analysis Airport Runway Capacity. Dr. Antonio A. Trani. Fall 2017

Time-Space Analysis Airport Runway Capacity. Dr. Antonio A. Trani. Fall 2017 Time-Space Analysis Airport Runway Capacity Dr. Antonio A. Trani CEE 3604 Introduction to Transportation Engineering Fall 2017 Virginia Tech (A.A. Trani) Why Time Space Diagrams? To estimate the following:

More information

Bioinformatics of Protein Domains: New Computational Approach for the Detection of Protein Domains

Bioinformatics of Protein Domains: New Computational Approach for the Detection of Protein Domains Bioinformatics of Protein Domains: New Computational Approach for the Detection of Protein Domains Maricel Kann Assistant Professor University of Maryland, Baltimore County mkann@umbc.edu Maricel Kann.

More information

Abstract. Introduction

Abstract. Introduction COMPARISON OF EFFICIENCY OF SLOT ALLOCATION BY CONGESTION PRICING AND RATION BY SCHEDULE Saba Neyshaboury,Vivek Kumar, Lance Sherry, Karla Hoffman Center for Air Transportation Systems Research (CATSR)

More information

EUROCONTROL Call Sign Similarity Project

EUROCONTROL Call Sign Similarity Project EUROCONTROL Call Sign Similarity Project Call Sign Similarity Project Overview ICAO MID Region 1 st Call Sign Confusion Ad-hoc Working Group Abu Dhabi, United Arab Emirates 16-18 February 2015 Richard

More information

UNIT TITLE: CONSTRUCT AND TICKET DOMESTIC AIRFARES

UNIT TITLE: CONSTRUCT AND TICKET DOMESTIC AIRFARES UNIT TITLE: CONSTRUCT AND TICKET DOMESTIC AIRFARES NOMINAL HOURS: UNIT NUMBER: UNIT DESCRIPTOR: This unit deals with skills and knowledge required to construct itineraries, cost airfares and issue documentation

More information

LCC Competition in the U.S. and EU: Implications for the Effect of Entry by Foreign Carriers on Fares in U.S. Domestic Markets

LCC Competition in the U.S. and EU: Implications for the Effect of Entry by Foreign Carriers on Fares in U.S. Domestic Markets LCC Competition in the U.S. and EU: Implications for the Effect of Entry by Foreign Carriers on Fares in U.S. Domestic Markets Xinlong Tan Clifford Winston Jia Yan Bayes Data Intelligence Inc. Brookings

More information

Cross-sectional time-series analysis of airspace capacity in Europe

Cross-sectional time-series analysis of airspace capacity in Europe Cross-sectional time-series analysis of airspace capacity in Europe Dr. A. Majumdar Dr. W.Y. Ochieng Gerard McAuley (EUROCONTROL) Jean Michel Lenzi (EUROCONTROL) Catalin Lepadatu (EUROCONTROL) 1 Introduction

More information

A Multilayer and Time-varying Structural Analysis of the Brazilian Air Transportation Network

A Multilayer and Time-varying Structural Analysis of the Brazilian Air Transportation Network A Multilayer and Time-varying Structural Analysis of the Brazilian Air Transportation Network Klaus Wehmuth, Bernardo B. A. Costa, João Victor M. Bechara, Artur Ziviani 1 National Laboratory for Scientific

More information

Enabling Civilian Low-Altitude Airspace and Unmanned Aerial System (UAS) Operations. Unmanned Aerial System Traffic Management (UTM)

Enabling Civilian Low-Altitude Airspace and Unmanned Aerial System (UAS) Operations. Unmanned Aerial System Traffic Management (UTM) Enabling Civilian Low-Altitude Airspace and Unmanned Aerial System (UAS) Operations By Unmanned Aerial System Traffic Management (UTM) Parimal Kopardekar, Ph.D. UTM Principal Investigator and Manager,

More information

Travel Program Implementation

Travel Program Implementation Travel Program Implementation Town Hall Meeting July 22, 2015 Today s Objectives Introduce the Johns Hopkins Travel Program Provide an overview of World Travel, Inc. and its services Identify how to access

More information

ICAO EUR Region Performance Framework

ICAO EUR Region Performance Framework ICAO EUR Region Performance Framework Regional Performance Framework Workshop Baku, Azerbaijan, 10-11 April 2014 ICAO European and North Atlantic Office 9 April 2014 Page 1 OUTLINES Why a Regional Performance

More information

An Econometric Study of Flight Delay Causes at O Hare International Airport Nathan Daniel Boettcher, Dr. Don Thompson*

An Econometric Study of Flight Delay Causes at O Hare International Airport Nathan Daniel Boettcher, Dr. Don Thompson* An Econometric Study of Flight Delay Causes at O Hare International Airport Nathan Daniel Boettcher, Dr. Don Thompson* Abstract This study examined the relationship between sources of delay and the level

More information

Annotating, Extracting, and Linking Legal Information

Annotating, Extracting, and Linking Legal Information Annotating, Extracting, and Linking Legal Information Adam Wyner University of Aberdeen Department of Computing Science University of Edinburgh Law School March 11, 2014 Outline Background, context, materials.

More information

Assignment of Arrival Slots

Assignment of Arrival Slots Assignment of Arrival Slots James Schummer Rakesh V. Vohra Kellogg School of Management (MEDS) Northwestern University March 2012 Schummer & Vohra (Northwestern Univ.) Assignment of Arrival Slots March

More information

Interreg Vb /Prowad Link WP6.5. Feasibilitystudy, nature tourism routes around the North Sea Region Project description

Interreg Vb /Prowad Link WP6.5. Feasibilitystudy, nature tourism routes around the North Sea Region Project description Interreg Vb, North Sea Region Prowad Link project Feasibility study: Nature tourism route around the North Sea Region, 2019 / specification 06.02.2019 Background Interreg Vb, North Sea Region, project

More information

MODAIR. Measure and development of intermodality at AIRport

MODAIR. Measure and development of intermodality at AIRport MODAIR Measure and development of intermodality at AIRport M3SYSTEM ANA ENAC GISMEDIA Eurocontrol CARE INO II programme Airports are, by nature, interchange nodes, with connections at least to the road

More information

An Exploration of LCC Competition in U.S. and Europe XINLONG TAN

An Exploration of LCC Competition in U.S. and Europe XINLONG TAN An Exploration of LCC Competition in U.S. and Europe CLIFFORD WINSTON JIA YAN XINLONG TAN BROOKINGS INSTITUTION WSU WSU Motivation Consolidation of airlines could lead to higher fares and service cuts.

More information

Reservation & Ticketing Policy

Reservation & Ticketing Policy Reservation & Ticketing Policy Dated 6 th September 2015 Reservation & Ticketing Policy Contents 1. Introduction... 3 2. Purpose... 3 3. Implementation... 3 4. Application... 4 5. Best Practices... 4 6.

More information

THIRTEENTH AIR NAVIGATION CONFERENCE

THIRTEENTH AIR NAVIGATION CONFERENCE International Civil Aviation Organization AN-Conf/13-WP/22 14/6/18 WORKING PAPER THIRTEENTH AIR NAVIGATION CONFERENCE Agenda Item 1: Air navigation global strategy 1.4: Air navigation business cases Montréal,

More information

ACTION: Notice of a new task assignment for the Aviation Rulemaking Advisory Committee

ACTION: Notice of a new task assignment for the Aviation Rulemaking Advisory Committee This document is scheduled to be published in the Federal Register on 09/18/2015 and available online at http://federalregister.gov/a/2015-23433, and on FDsys.gov [4910-13] DEPARTMENT OF TRANSPORTATION

More information

Wake Turbulence Research Modeling

Wake Turbulence Research Modeling Wake Turbulence Research Modeling John Shortle, Lance Sherry Jianfeng Wang, Yimin Zhang George Mason University C. Doug Swol and Antonio Trani Virginia Tech Introduction This presentation and a companion

More information

Quantitative Analysis of Automobile Parking at Airports

Quantitative Analysis of Automobile Parking at Airports Quantitative Analysis of Automobile Parking at Airports Jiajun Li, M.Sc. Candidate Dr. Richard Tay, Professor, AMA/CTEP chair Dr. Alexandre de Barros, Assistant Professor University of Calgary Abstract

More information

Developing an Aircraft Weight Database for AEDT

Developing an Aircraft Weight Database for AEDT 17-02-01 Recommended Allocation: $250,000 ACRP Staff Comments This problem statement was also submitted last year. TRB AV030 supported the research; however, it was not recommended by the review panel,

More information

Measurement of environmental benefits by ICAO Secretariat

Measurement of environmental benefits by ICAO Secretariat International Civil Aviation Organization Measurement of environmental benefits by ICAO Secretariat ICAO PBN TF Sven Halle ICAO EUR/NAT Office ICAO EUR/NAT Office PBN Workshop 1 Overview KPA ASSEMBLY RESOLUTION

More information

NATS. SAIP AD3 Jersey Interface Change Stage 1 Assessment Meeting. Friday 2 nd February x NATS presenters.

NATS. SAIP AD3 Jersey Interface Change Stage 1 Assessment Meeting. Friday 2 nd February x NATS presenters. NATS SAIP AD3 Jersey Interface Change Stage 1 Assessment Meeting Friday 2 nd February 2018 3x NATS presenters Agenda Revised Statement of need Background Issues and benefits arising from proposed change

More information

Activity Template. Drexel-SDP GK-12 ACTIVITY. Subject Area(s): Sound Associated Unit: Associated Lesson: None

Activity Template. Drexel-SDP GK-12 ACTIVITY. Subject Area(s): Sound Associated Unit: Associated Lesson: None Activity Template Subject Area(s): Sound Associated Unit: Associated Lesson: None Drexel-SDP GK-12 ACTIVITY Activity Title: What is the quickest way to my destination? Grade Level: 8 (7-9) Activity Dependency:

More information

The Computerized Analysis of ATC Tracking Data for an Operational Evaluation of CDTI/ADS-B Technology

The Computerized Analysis of ATC Tracking Data for an Operational Evaluation of CDTI/ADS-B Technology DOT/FAA/AM-00/30 Office of Aviation Medicine Washington, D.C. 20591 The Computerized Analysis of ATC Tracking Data for an Operational Evaluation of CDTI/ADS-B Technology Scott H. Mills Civil Aeromedical

More information

EASA Safety Information Bulletin

EASA Safety Information Bulletin EASA Safety Information Bulletin EASA SIB No: 2014-29 SIB No.: 2014-29 Issued: 24 October 2014 Subject: Minimum Cabin Crew for Twin Aisle Aeroplanes Ref. Publications: Commission Regulation (EU) No 965/2012

More information

Efficiency and Automation

Efficiency and Automation Efficiency and Automation Towards higher levels of automation in Air Traffic Management HALA! Summer School Cursos de Verano Politécnica de Madrid La Granja, July 2011 Guest Lecturer: Rosa Arnaldo Universidad

More information

Introduction Runways delay analysis Runways scheduling integration Results Conclusion. Raphaël Deau, Jean-Baptiste Gotteland, Nicolas Durand

Introduction Runways delay analysis Runways scheduling integration Results Conclusion. Raphaël Deau, Jean-Baptiste Gotteland, Nicolas Durand Midival Airport surface management and runways scheduling ATM 2009 Raphaël Deau, Jean-Baptiste Gotteland, Nicolas Durand July 1 st, 2009 R. Deau, J-B. Gotteland, N. Durand ()Airport SMAN and runways scheduling

More information

CONNECT Events: Flight Optimization

CONNECT Events: Flight Optimization CONNECT Events: Flight Optimization Ian Britchford Director Post Flight Solutions 5 th October 2016 Data Analysis and Root Cause Evaluation for Continuous Improvement Learn about Jeppesen s next level

More information

The Commercial UAS Symposium San Diego, CA June 16 17, 2015

The Commercial UAS Symposium San Diego, CA June 16 17, 2015 The Commercial UAS Symposium San Diego, CA June 16 17, 2015 http://www.ttcus/com @Techtrain Linkedin/Group: Technology Training Corp NAS Safe Integration & Use of UAS Civil & Commercial Unmanned Aircraft

More information

EXPLANATION OF TPP TERMS AND SYMBOLS

EXPLANATION OF TPP TERMS AND SYMBOLS U.S. TERMINAL PROCEDURES PUBLICATION 52 EXPLANATION OF TPP TERMS AND SYMBOLS The discussions and examples in this section will be based primarily on the IFR (Instrument Flight Rule) Terminal Procedures

More information

Safety Enhancement RNAV Safe Operating and Design Practices for STARs and RNAV Departures

Safety Enhancement RNAV Safe Operating and Design Practices for STARs and RNAV Departures Safety Enhancement Action: Implementers: Statement of Work: Safety Enhancement 213.5 RNAV Safe Operating and Design Practices for STARs and RNAV Departures To mitigate errors on Standard Terminal Arrival

More information

Amadeus e-travel Management Release Notes Highlights

Amadeus e-travel Management Release Notes Highlights Amadeus e-travel Management 17.2 Release Notes Highlights Integration of Danish Air Transport via Travelfusion Low Cost Carrier content on AeTM is enriched with Danish Air Transport B2C through Travelfusion

More information

ICAO Young Aviation Professionals Programme

ICAO Young Aviation Professionals Programme ICAO Young Aviation Professionals Programme In partnership with and The International Civil Aviation Organization (ICAO), in partnership with the International Air Transport Association (IATA) and Airports

More information

American Institute of Aeronautics and Astronautics

American Institute of Aeronautics and Astronautics Speech by Jeff Hmara to the American Institute of Aeronautics and Astronautics Tuesday April 25, 2002 FREE FLIGHT 1500 K Street, NW Suite 500 Washington, DC 20005 WHAT IS FREE FLIGHT?...3 CORE CAPABILITIES...3

More information

TENTH SESSION OF THE STATISTICS DIVISION

TENTH SESSION OF THE STATISTICS DIVISION International Civil Aviation Organization STA/10-WP/14 16/10/09 WORKING PAPER TENTH SESSION OF THE STATISTICS DIVISION Montréal, 23 to 27 November 2009 Agenda Item 4: Airport traffic data DATA REQUIREMENTS

More information

BLUE PANORAMA AIRLINES POLICY ON AGENT DEBIT MEMO (ADM)

BLUE PANORAMA AIRLINES POLICY ON AGENT DEBIT MEMO (ADM) BLUE PANORAMA AIRLINES POLICY ON AGENT DEBIT MEMO (ADM) ADM Policy Background Blue Panorama Airlines considers you as our key partners in business. We seek your support and cooperation to effectively implement

More information

Module Objectives. Creating a Manual Fare Build

Module Objectives. Creating a Manual Fare Build The Galileo system is capable of quoting most fares automatically. However, there are occasions when this is not possible or when you may elect to use a non-system fare. In these situations, it is possible

More information

International Civil Aviation Organization SECRETARIAT ADMINISTRATIVE INSTRUCTIONS ON THE IMPLEMENTATION OF THE ICAO CIVIL AVIATION TRAINING POLICY

International Civil Aviation Organization SECRETARIAT ADMINISTRATIVE INSTRUCTIONS ON THE IMPLEMENTATION OF THE ICAO CIVIL AVIATION TRAINING POLICY International Civil Aviation Organization SECRETARIAT ADMINISTRATIVE INSTRUCTIONS ON THE IMPLEMENTATION OF THE ICAO CIVIL AVIATION TRAINING POLICY 1. INTRODUCTION (22 July 2015) 1.1 These administrative

More information

Appendix B Ultimate Airport Capacity and Delay Simulation Modeling Analysis

Appendix B Ultimate Airport Capacity and Delay Simulation Modeling Analysis Appendix B ULTIMATE AIRPORT CAPACITY & DELAY SIMULATION MODELING ANALYSIS B TABLE OF CONTENTS EXHIBITS TABLES B.1 Introduction... 1 B.2 Simulation Modeling Assumption and Methodology... 4 B.2.1 Runway

More information

AIRPORT OPERATIONS TABLE OF CONTENTS

AIRPORT OPERATIONS TABLE OF CONTENTS AIRPORT OPERATIONS TABLE OF CONTENTS Module 1 Understanding the Airport... 3 1.0 Understanding the Airport...5 1.1 Overview of the Air Transport System...6 1.1.1 The Importance of the Air Transportation

More information

Module description: Traffic Sample. Pim van Leeuwen, NLR Second Demonstration Workshop Braunschweig, Germany June 25 th, 2013

Module description: Traffic Sample. Pim van Leeuwen, NLR Second Demonstration Workshop Braunschweig, Germany June 25 th, 2013 Module description: Traffic Sample Pim van Leeuwen, NLR Second Demonstration Workshop Braunschweig, Germany June 25 th, 2013 Structure of the presentation Scenario: traffic definition (sample) + events

More information

Predicting Flight Delays Using Data Mining Techniques

Predicting Flight Delays Using Data Mining Techniques Todd Keech CSC 600 Project Report Background Predicting Flight Delays Using Data Mining Techniques According to the FAA, air carriers operating in the US in 2012 carried 837.2 million passengers and the

More information

CGE Training: Train the Trainer Scenarios

CGE Training: Train the Trainer Scenarios CGE Training: Train the Trainer Scenarios Due to the nature of how travel reservations are booked and ticketed in Train Stable it is very important that the guidelines below are followed. If the guidelines

More information