Lecture 13a: Chunks. Announcements. Announcements (III) Announcements (II) Project #3 Preview 4/18/18. Pipeline of NLP Tools

Size: px
Start display at page:

Download "Lecture 13a: Chunks. Announcements. Announcements (III) Announcements (II) Project #3 Preview 4/18/18. Pipeline of NLP Tools"

Transcription

1 Lecture 3a: Chuks Aoucemets Code Freeze Day! From here o out, do t chage your code Exceptios: Bug fixes : do t tell me why your code crashed, just fix it. Checkpoited before-ad-after: If you tell me how the froze versio of your code works The you ca also say how a (small) modificatio chages performace CS540 4/7/8 Material borrowed (with permissio) from James Pustejovsky & Marc Verhage of Bradeis. Mistakes are mie. Aoucemets (II) Paper : Due oe week from today Four pages (o loger) Three parts Itroductio : describe your motivatio ad program Why did you desig it the way you did How is it supposed to work Predicted limitatios ad risks Performace How well does it work o the problems give? Report relevat quatitative metrics for your desig You may supplemet with additioal problems of your ow desig Coclusio Do your predictios match the results? If ot, why ot? Aoucemets (III) I-class presetatio : oe week from today 5 miutes maximum (timed) Powerpoit or pdf slides to me (draper@colostate.edu) the ight before Same 3-part structure as the paper Project #3 Preview Project #3 is OPTIONAL Do it if uhappy with existig grades Accepted through Wedesday, May 9 th I will try to be quick about Project #2 grades Task: Build a NLP iterface to your Blocks World Simulator Cotrol it through a series of Eglish laguage commads Ca use existig parsers ad other tools Pipelie of NLP Tools Scrapig (ot covered here) Setece splittig Tokeizatio (Stemmig) Part-of-speech taggig Shallow parsig Named etity recogitio Sytactic parsig (Sematic Role Labelig) Thursday Today 6

2 POS as HMM What are the states? POS tags CC/CD/ /NN/ /WRB Because the goal is to fid the most likely sequece of tags What are the observatios Words What is i the Trasitio Table? Maps POS tags to POS tags Probabilities how likely is a sigular ou (NN) to be followed by a adjective (JJ)? Traied usig a labeled corpus What about the observatio matrix? Maps words (observatios) to states (POS tags) Etries: P(POS tag word) Traied o labeled corpus POS taggig with Hidde Markov Models P ( t... t w... w ) tags words P = µ P» ( w... w t... t ) P( t... t ) P( w... w ) ( w... w t... t ) P( t... t ) Õ i= P ( w t ) P( t t ) i i i i- output probability trasitio probability 8 POS taggig algorithms Performace o the Wall Street Joural corpus Traiig Cost Speed Accuracy Depedecy Net (2003) Low Low 97.2 Coditioal Radom Fields High High 97. Support vector machies (2003) 97. Bidirectioal MEMM (2005) Low 97. Brill s tagger (995) Low 96.6 HMM (2000) Very low High 96.7 Chukig (shallow parsig) He reckos the curret accout deficit will arrow to VP VP PP oly #.8 billio i September. PP A chuker (shallow parser) segmets a setece ito o-recursive phrases. 9 0 The Nou Phrase () Examples: He Barak Obama The Presidet The former Cogressma from Illiois They ca all appear i a similar cotext: was bor i Hawaii. Prepositioal Phrases Examples: the ma i the white suit Come ad look at my paitigs Are you fod of aimals? Put that thig o the floor 2 2

3 Verb Phrases Examples: He wet He was tryig to keep his temper. She quickly showed me the way to hide. Chukig Text chukig is dividig seteces ito ooverlappig phrases. Nou phrase chukig deals with extractig the ou phrases from a setece. While chukig is much simpler tha parsig, it is still a challegig task to build a accurate ad very efficiet chuker. 3 4 What is it good for Chukig is useful i may applicatios: Iformatio Retrieval & Questio Aswerig Machie Traslatio Preprocessig before full sytactic aalysis Text to speech What kid of structures should a partial parser idetify? Differet structures useful for differet tasks: Partial costituet structure [ I] [ VP saw [ a tall ma i the park]]. Prosodic segmets [I saw] [a tall ma] [i the park]. Cotet word groups [I] [saw] [a tall ma] [i the park]. 5 6 Chuk Parsig Goal: divide a setece ito a sequece of chuks. Chuks are o-overlappig regios of a text: [I] saw [a tall ma] i [the park]. Chuks are o-recursive a chuk ca ot cotai other chuks Chuks are o-exhaustive ot all words must be icluded i chuks Chuk Parsig Examples Nou-phrase chukig: [I] saw [a tall ma] i [the park]. Verb-phrase chukig: The ma who [was i the park] [saw me]. Prosodic chukig: [I saw] [a tall ma] [i the park]

4 Chuks ad Costituecy Costituets: [a tall ma i [the park]]. Chuks: [a tall ma] i [the park]. Chuks are ot costituets Costituets are recursive Chuks are typically subsequeces of Costituets Chuks do ot cross costituet boudaries Chuk Parsig: Accuracy Chuk parsig achieves higher accuracy Smaller solutio space Less word-order flexibility withi chuks tha betwee chuks Better locality: Fewer log-rage depedecies Less cotext depedece No eed to resolve attachmet ambiguity Less error propagatio 9 20 Chuk Parsig: Domai Specificity Chuk parsig is less domai specific: Depedecies o lexical/sematic iformatio ted to occur at levels "higher" tha chuks: Attachmet Argumet selectio Movemet Fewer stylistic differeces withi chuks Chuk Parsig: Efficiecy Chuk parsig is more efficiet Smaller solutio space Relevat cotext is small ad local Chuks are o-recursive Chuk parsig ca be implemeted with a fiite state machie 2 22 Psycholiguistic Motivatios Chuk parsig is psycholiguistically motivated: Chuks as processig uits Humas ted to read texts oe chuk at a time Eye-movemet trackig studies Chuks are phoologically marked Pauses, Stress patters Chukig might be a first step i full parsig Chuk Parsig Techiques Chuk parsers usually igore lexical cotet Oly eed to look at part-of-speech tags Techiques for implemetig chuk parsig: Regular expressio matchig / Fiite State Machies (see ext) Trasformatio Based Learig Memory Based Learig Other taggig-style methods

5 Regular Expressio Matchig Defie a regular expressio that matches the sequeces of tags i a chuk A simple ou phrase chuk regexp: <DT>? <JJ>* <NN>* <NN> Chuk all matchig subsequeces: the/dt little/jj cat/nn sat/vbd o/in the/dt mat/nn [the/dt little/jj cat/nn] sat/vbd o/in [the/dt mat/nn] If matchig subsequeces overlap, the first oe or logest oe gets priority Chukig as Taggig Map Part of Speech tag sequeces to {I,O,B}* I tag is part of a chuk O tag is ot part of B the first tag of a chuk which immediately follows aother chuk Alterative tags: Begi, Ed, Outside Example: Iput: The teacher gave Sara the book Output: I I O I B I Chukig State of the Art Whe addressed as taggig methods similar to POS taggig ca be used HMM combiig POS ad IOB tags TBL rules based o POS ad IOB tags Depedig o task specificatio ad test set: 90-95% for chuks Chukig with Machie learig Chukig performace o Pe Treebak Wiow (with basic features) (Zhag, 2002) Recall Precisi o F- score Perceptro (Carreras, 2003) SVM + votig (Kudoh, 2003) SVM (Kudo, 2000) Bidirectioal MEMM (Tsuruoka, 2005) Named-Etity Recogitio We have show that iterleuki- (IL-) ad IL-2 cotrol protei protei protei IL-2 receptor alpha (IL-2R alpha) gee trascriptio i DNA CD4-CD8-murie T lymphocyte precursors. cell_lie Recogize amed-etities i a setece. Gee/protei ames Protei, DNA, RNA, cell_lie, cell_type Sytactic Parsig S VP QP VBN NN VBD DT JJ CD CD NNS. Estimated volume was a light 2.4 millio ouces

6 Phrase Structure + Head Iformatio Depedecy relatios S VP QP VBN NN VBD DT JJ CD CD NNS. Estimated volume was a light 2.4 millio ouces. VBN NN VBD DT JJ CD CD NNS. Estimated volume was a light 2.4 millio ouces Parse Tree S o Sematic Structure DT 2 4 VP 6 VP 5 VP 2 S o VP 5 Predicate argumet relatios A AJ 5 ormal VP 7 does AV 9 ot VP 22 exclude DT 2 4 A AJ 5 7 ARG2 ormal 8 0 VP 6 VP 2 VP 7 AV 9 VP ARG2 does ot exclude 24 serum CRP 3 measuremet AJ 26 deep 29 vei 28 3 thrombosis 33 MOD serum MOD CRP 3 mesuremet AJ deep 29 3 MOD vei thrombosis 34 Feature-Based Parsig Lexical etry HEAD: ou SUBJ: <> HEAD: verb SUBJ: <> Subject-head schema HEAD: verb SUBJ: <ou> HEAD: verb SUBJ: <ou> Head-modifier schema HEAD: Mary walked slowly adv MOD: verb HPSG A few schema May lexical etries Deep sytactic aalysis Grammar Corpus-based grammar costructio (Miyao et al 2004) Parser Beam search (Tsuruoka et al.) 35 6

Parsers. Introduction to Computational Linguistics: Parsing Algorithms. Ambiguity refresher. CFG refresher. Example: search space for top-down parser

Parsers. Introduction to Computational Linguistics: Parsing Algorithms. Ambiguity refresher. CFG refresher. Example: search space for top-down parser Itroductio to Computatioal Liguistics: Parsig Algorithms haro Goldwater (based o slides by Mark teedma ad Philipp Koeh) July 5 Parsers A parser is a algorithm that computes a structure for a iut strig

More information

8.5. Solving Equations II. Goal Solve equations by balancing.

8.5. Solving Equations II. Goal Solve equations by balancing. 8.5 Solvig Equatios II Goal Solve equatios by balacig. STUDENT BOOK PAGES 268 271 Direct Istructio Prerequisite Skills/Cocepts Solve a equatio by ispectio or systematic trial. Perform operatios usig itegers,

More information

A SECOND SOLUTION FOR THE RHIND PAPYRUS UNIT FRACTION DECOMPOSITIONS

A SECOND SOLUTION FOR THE RHIND PAPYRUS UNIT FRACTION DECOMPOSITIONS Fudametal Joural of Mathematics ad Mathematical Scieces Vol., Issue, 0, Pages -55 This paper is available olie at http://www.frdit.com/ Published olie November 9, 0 A SECOND SOLUTION FOR THE RHIND PAPYRUS

More information

Computer Architecture ELEC3441

Computer Architecture ELEC3441 Computer rchitecture ELEC344 ISC vs CISC Iro Law CPUTime = # of istructio program # of cycle istructio cycle Lecture 5 Pipeliig () Dr. Hayde Kwok-Hay So Departmet of Electrical ad Electroic Egieerig L4

More information

number in a data set adds (or subtracts) that value to measures of center but does not affect measures of spread.

number in a data set adds (or subtracts) that value to measures of center but does not affect measures of spread. Lesso 3-3 Lesso 3-3 Traslatios of Data Vocabulary ivariat BIG IDEA Addig (or subtractig) the same value to every umber i a data set adds (or subtracts) that value to measures of ceter but does ot affect

More information

The structure of the Fibonacci numbers in the modular ring Z 5

The structure of the Fibonacci numbers in the modular ring Z 5 Notes o Number Theory ad Discrete Mathematics Vol. 19, 013, No. 1, 66 7 The structure of the iboacci umbers i the modular rig Z J. V. Leyedekkers 1 ad A. G. Shao 1 aculty of Sciece, The Uiversity of Sydey

More information

Extensible Detection and Indexing of Highlight Events in Broadcasted Sports Video

Extensible Detection and Indexing of Highlight Events in Broadcasted Sports Video Extesible Detectio ad Idexig of Highlight Evets i Broadcasted Sports Video Dia W. Tjodroegoro 1, Yi-Pig Phoebe Che 2, Bih Pham 3 1 School of Iformatio Systems, Queeslad Uiversity of Techology, Brisbae,

More information

SPH4U Transmission of Waves in One and Two Dimensions LoRusso

SPH4U Transmission of Waves in One and Two Dimensions LoRusso Waves travelig travellig from oe medium to aother will exhibit differet characteristics withi each medium. Rules A wave of fixed frequecy will have a shorter wavelegth whe passig from a fast medium to

More information

SERIES FP4000 FLOW RATES TABLE B** RANGE MODEL RANGE MODEL SERIES FP2000 FLOW RATES TABLE A** RANGE MODEL RANGE MODEL

SERIES FP4000 FLOW RATES TABLE B** RANGE MODEL RANGE MODEL SERIES FP2000 FLOW RATES TABLE A** RANGE MODEL RANGE MODEL Data Sheet Field IT Variable Area Flowmeters Acrylic VA Flowmeter Series FP Easy to read Eglish or Metric Scales Water rages from 4CCM to 20GPM Air rages from 50 CCM to 4000 LPM Threaded brass iserts for

More information

Research Article. Relative analysis of Taekwondo back kick skills biomechanics based on 3D photograph parsing. Mingming Guo

Research Article. Relative analysis of Taekwondo back kick skills biomechanics based on 3D photograph parsing. Mingming Guo Available olie www.jocpr.com Joural of Chemical ad Pharmaceutical Research, 203, 5(2):64-69 Research Article ISSN : 0975-734 CODEN(USA) : JCPRC5 Relative aalysis of Taekwodo back kick skills biomechaics

More information

Andover YMCA Swim Lessons Schedule

Andover YMCA Swim Lessons Schedule Adover YMCA Swim Lessos Schedule 2018 Early Fall September 10 - October 28 (763) 230-9622 www.adoverymca.org ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay safe aroud

More information

THE EFFECTS OF COUPLED INDUCTORS IN PARALLEL INTERLEAVED BUCK CONVERTERS

THE EFFECTS OF COUPLED INDUCTORS IN PARALLEL INTERLEAVED BUCK CONVERTERS THE EFFECTS OF COUPED INDUCTORS IN PARAE INTEREAVED BUCK CONVERTERS Paul Seria, David Fi ad Geoff Walker pseria@itee.uq.edu.au School of Iformatio Techology ad Electrical Egieerig Uiversity of Queeslad

More information

DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING, THE UNIVERSITY OF NEW MEXICO ECE-238L: Computer Logic Design Fall Notes - Chapter 6.

DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING, THE UNIVERSITY OF NEW MEXICO ECE-238L: Computer Logic Design Fall Notes - Chapter 6. PARTMNT OF LCTRICAL AN COMPUTR NGINRING, TH UNIVRSITY OF NW MXICO C-238L: Computer Logic esig Fall 23 RGISTRS: Notes - Chapter 6 -bit Register: This is a collectio of '' -type flip flops, where each flip

More information

operate regenerator top without boiling aq. amine solution.

operate regenerator top without boiling aq. amine solution. HSRemoval-MaterialBalacemcd Rough material balace for removal of H S from shale gas with MDEA ad recovery of elemetal sulfur via the Claus process The solvet has bee dow-selected to be methyldiethaolamie

More information

St. Paul Midway YMCA Swim Lessons Schedule

St. Paul Midway YMCA Swim Lessons Schedule St. Paul Midway YMCA Swim Lessos Schedule 2018 Late Fall October 29 - December 16 (651) 646-4557 ymcam.org/midway ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay safe

More information

Influences of Teaching Styles and Motor Educability on Learning Outcomes of Volleyball

Influences of Teaching Styles and Motor Educability on Learning Outcomes of Volleyball Asia Social Sciece; Vol., No. 5; 14 ISSN 1911-17 E-ISSN 1911-5 Published by Caadia Ceter of Sciece ad Educatio Iflueces of Teachig Styles ad Motor Educability o Learig Outcomes of Volleyball Syamsuddi

More information

Eagan YMCA Swim Lessons Schedule

Eagan YMCA Swim Lessons Schedule Eaga YMCA Swim Lessos Schedule 2018 Early Fall September 10 - October 28 (651) 456-9622 www.eagaymca.org ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay safe aroud

More information

WhisperFit EZ Ventilation Fans

WhisperFit EZ Ventilation Fans FV-08-11VF5, FV-08-11VFM5, FV-08-11VFL5 FV-08-11VF5 FV-08-11VFM5 FV-08-11VFL5 (with 3" duct adapter) Ideal for remodelig ad hotel ew costructio or reovatio Pick-A-Flow Speed Selector oe fa, you choose

More information

West St Paul YMCA Swim Lessons Schedule

West St Paul YMCA Swim Lessons Schedule West St Paul YMCA Swim Lessos Schedule 2018 Early Fall September 10 - October 28 (651) 457-0048 www.weststpaulymca.org ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay

More information

Basic Gas Spring Theory

Basic Gas Spring Theory Calculatig the iitial force The iitial force of the gas sprig ca be calculated as the sealed area of the pisto rod or the pisto (depedig o desig) multiplied by the pressure iside the gas sprig. The larger

More information

n UL Listed and FM Approved for n Solenoid control n Quick pressure relief valve 73Q n Pressure sustaining & reducing valve 723

n UL Listed and FM Approved for n Solenoid control n Quick pressure relief valve 73Q n Pressure sustaining & reducing valve 723 Pressure Relief/Sustaiig Valve Prioritizig pressure zoes Esurig cotrolled pipelie fill-up Prevetig pipelie emptyig Pump overload & cavitatio protectio Safeguardig pump miimum flow Excessive lie pressure

More information

(612)

(612) Shoreview YMCA Swim Lessos Schedule Late Sprig 2019 - April 15 - Jue 2 (612) 230-9622 www.shoreviewymca.org ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay safe aroud

More information

2) What s the Purpose of Your Project?

2) What s the Purpose of Your Project? Creatig Walkable, Bikeable Commuities Developig Effective Active Trasportatio Projects ad Programs Overview: Tools ad Strategies to Predict ad Documet Bicyclig ad Walkig Rates 1) Why Documet the Need for

More information

Controlling noise at work

Controlling noise at work Health ad Safety Cotrollig oise at work The Cotrol of Noise at Work Regulatios 2005 Guidace o Regulatios This is a free-to-dowload, web-friedly versio of L108, (Secod editio, published 2005). This versio

More information

"The twisting movement of any hoof should, for physiological reasons, not be hindered by Shoeing." (Lungwitz 1884)

The twisting movement of any hoof should, for physiological reasons, not be hindered by Shoeing. (Lungwitz 1884) Volume 15: Issue 2 Shoeig for Rotatioal Deviatio of the Equie Limb by Michael J. Wildestei CJF, FWCF (Hos) Examiatio of a horse prelimiary to shoeig should be made while the aimal is at rest ad afterwards

More information

Sequence Tagging. Today. Part-of-speech tagging. Introduction

Sequence Tagging. Today. Part-of-speech tagging. Introduction Sequence Tagging Today Part-of-speech tagging Introduction Part of speech tagging There are 10 parts of speech, and they are all troublesome. -Mark Twain POS tags are also known as word classes, morphological

More information

Coal Pulveriser. Global Solutions

Coal Pulveriser. Global Solutions Coal Pulveriser. Global Solutios > Worm Gears > Gear Uits > Coupligs & Freewheels Global Coal Pulveriser Solutios Reold is a global egieerig group with over 130 years of experiece i the desig ad maufacture

More information

Wondering where to start?

Wondering where to start? Ridgedale YMCA Swim Lessos Schedule 2019 Witer Jauary 1 - February 24 (952) 544-7708 www.ridgedaleymca.org ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay safe aroud

More information

Gait-Event-Based Synchronization Method for Gait Rehabilitation Robots via a Bio-inspired Adaptive Oscillator

Gait-Event-Based Synchronization Method for Gait Rehabilitation Robots via a Bio-inspired Adaptive Oscillator TBME-0485-205 Gait-Evet-Based Sychroizatio Method for Gait Rehabilitatio Robots via a Bio-ispired Adaptive Oscillator Gog Che, Peg Qi, Member, IEEE, Zhao Guo ad Haoyog Yu, Member, IEEE Abstract I the field

More information

Analytical and numerical prediction of water sorptivity in cement-based materials

Analytical and numerical prediction of water sorptivity in cement-based materials Life Cycle Predictio ad Maagemet of Cocrete tructures, apporo, March Aalytical ad umerical predictio of water sorptivity i cemet-based materials Licheg WANG Dr. Dalia Uiversity of Techology, Dalia Chia

More information

P h o t o g r a p h i c L i g h t i n g ( 1 1 B )

P h o t o g r a p h i c L i g h t i n g ( 1 1 B ) 9 1 5 9 P h o t o g r a p h i c L i g h t i g ( 1 1 B ) 30S/30E/30M A Photography Course 9 1 5 9 : P h o t o g r a p h i c L i g h t i g ( 1 1 B ) 3 0 S / 3 0 E / 3 0 M Course Descriptio This course focuses

More information

Hazard Identificaiton of Railway Signaling System Using PHA and HAZOP Methods

Hazard Identificaiton of Railway Signaling System Using PHA and HAZOP Methods www.ijape.org Iteratioal Joural of Automatio ad Power Egieerig (IJAPE) Volume 2 Issue 2, February 2013 Hazard Idetificaito of Railway Sigalig System Usig PHA ad HAZOP Methods Jog Gyu Hwag *1, Hyu Jeog

More information

Hypothesis testing: ANOVA Test of the equality of means among c groups. Flow-chart

Hypothesis testing: ANOVA Test of the equality of means among c groups. Flow-chart Hypothesis testig: ANOVA Test of the equality of meas amog groups February 6, 200 Moez Hababou() Flow-hart Desribig iformatios Drawig olusios Foreastig Improve busiess proesses Data Colletio Probability

More information

Wondering where to start?

Wondering where to start? New Hope YMCA Swim Lessos Schedule 2018 Early Fall September 10 - October 28 (763) 535-4800 www.ewhopeymca.org ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay safe

More information

THE LATENT DEMAND METHOD

THE LATENT DEMAND METHOD THE LATENT DEMAND METHOD Bruce W. Ladis, Russell M. Otteberg, Vekat R. Vattikuti SCI, Ic., 18115 U.S. Highway 41North, Suite 600, Lutz, FL 33549, USA Email: bladis@sciworld.et Travel patters i a metropolita

More information

Held under the sanction of USA Swimming, issued by North Carolina Swimming, Inc. Sanction No. NC11117

Held under the sanction of USA Swimming, issued by North Carolina Swimming, Inc. Sanction No. NC11117 The Greesboro Swimmig Associatio's 2011 Joh Gordo Dewey Ivitatioal Swim Meet November 19-20, 2011 The Greesboro Aquatic Ceter 1921 West Lee Street, Greesboro, NC 27403 SANCTION: HOST: FACILITY: Held uder

More information

Welcome to the world of the Rube Goldberg!

Welcome to the world of the Rube Goldberg! Welcome to the world of the Rube Goldberg! Sice 1988, tes of thousads of studets have competed i our aual Rube Goldberg Machie Cotests where they are challeged to build the wackiest workig Rube Goldberg

More information

The Real Thing?: Representing the Bullfight and Spain in Death in the Afternoon by Peter Messent

The Real Thing?: Representing the Bullfight and Spain in Death in the Afternoon by Peter Messent The Real Thig?: Represetig the Bullfight ad Spai i Death i the Afteroo by Peter Messet Hemigway does t give us the real thig i the book; istead he gives us his versio of it Phrase used several times (both

More information

Introduction to Algorithms 6.046J/18.401J/SMA5503

Introduction to Algorithms 6.046J/18.401J/SMA5503 Itroductio to Algorithms 6.046J/8.40J/SMA5503 Lecture 4 Prof. Charles E. Leiserso Quicsort Proposed by C.A.R. Hoare i 962. Divide-ad-coquer algorithm. Sorts i place lie isertio sort, but ot lie merge sort.

More information

Rochester YMCA Swim Lessons Schedule

Rochester YMCA Swim Lessons Schedule Rochester YMCA Swim Lessos Schedule 2018 Early Fall September 10 - October 28 (507) 287-2260 www.ymcam.org/rochester ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay

More information

CLASS: XI: MATHEMATICS

CLASS: XI: MATHEMATICS LASS: XI: MATHEMATIS ERMUTATIONS AND OMBINATIONS RATIE QUESTIONS ON FATORIAL AND FUNDAMENTAL RINILES OF OUNTING ove the followig fo N, 1. (2 )! 2.!.[1.3.5...(2 1)] FORMULA USED Factoial otatio:! o 1.!

More information

Electrooculogram Signals Analysis for Process Control Operator Based on Fuzzy c-means

Electrooculogram Signals Analysis for Process Control Operator Based on Fuzzy c-means (IJACSA) Iteratioal Joural of Advaced Computer Sciece ad Applicatios, Vol. 6, No. 9, 5 Electrooculogram Sigals Aalysis for Process Cotrol Operator Based o Fuzzy c-meas Jiagwe Sog Raofe Wag* Guaghua Zhag

More information

Series 600 Accessories

Series 600 Accessories Series 600 Geeral These accessories are a rage of devices for completig a peumatic circuit. These valves, with their special fuctios, are iserted betwee two valves, betwee a valve ad a cylider, or followig

More information

A Fuzzy-based Software Tool Used to Predict 110m Hurdles Results During the Annual Training Cycle

A Fuzzy-based Software Tool Used to Predict 110m Hurdles Results During the Annual Training Cycle A Fuzzy-based Software Tool Used to Predict 110m Hurdles Results Durig the Aual Traiig Cycle Krzysztof Przedowek 1, Krzysztof Wiktorowicz 2, Tomasz Krzeszowski 2 ad Jausz Iskra 3 1 Faculty of Physical

More information

HEEL RETENTION SYSTEMS

HEEL RETENTION SYSTEMS TECHNOLOGY OVERVIEW the whole may be greater tha the sum of its parts. But the parts are pretty cool too. Our costat pursuit of excellece is deeply embedded i our desig, techology ad materials. Every attribute

More information

Hastings YMCA Swim Lessons Schedule

Hastings YMCA Swim Lessons Schedule Hastigs YMCA Swim Lessos Schedule 2018 Early Fall September 10 - October 28 (651) 480-8887 www.hastigsareaymca.org ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay

More information

Wondering where to start?

Wondering where to start? Blaisdell YMCA Swim Lessos Schedule 2018 Early Fall September 10 - October 28 (612) 827-5401 www.blaisdellymca.org ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay

More information

GENETICS 101 GLOSSARY

GENETICS 101 GLOSSARY GENETICS 101 This documet is iteded to provide a basic uderstadig of caie geetics to the America Eskimo Dog (AED) ower ad breeder. It is simplified from scietific facts ad uderstadig. It is ot iteded to

More information

SPEED OF SOUND MEASUREMENTS IN GAS-MIXTURES AT VARYING COMPOSITION USING AN ULTRASONIC GAS FLOW METER WITH SILICON BASED TRANSDUCERS

SPEED OF SOUND MEASUREMENTS IN GAS-MIXTURES AT VARYING COMPOSITION USING AN ULTRASONIC GAS FLOW METER WITH SILICON BASED TRANSDUCERS SPEED OF SOUND MEASUREMENTS IN GAS-MIXTURES AT VARYING COMPOSITION USING AN ULTRASONIC GAS FLOW METER WITH SILICON BASED TRANSDUCERS Torbjör Löfqvist, Kęstutis Sokas, Jerker Delsig EISLAB, Departmet of

More information

Chilled Mirror Dew Point Instrument

Chilled Mirror Dew Point Instrument 102 The Relatioship Betee Gas Ad Pressure (SF6) Whe the gas is i the temperature belo the codesig poit, de poit measuremet is ot available This gas codeses o the mirror, the figure belo idicates the relatioship

More information

Wondering where to start?

Wondering where to start? Bursville YMCA Swim Lessos Schedule 2018 Witer Jauary 8 - February 25 (952) 898-9622 ymcam.org/bursville ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay safe aroud

More information

DAMAGE ASSESSMENT OF FIBRE ROPES FOR OFFSHORE MOORING

DAMAGE ASSESSMENT OF FIBRE ROPES FOR OFFSHORE MOORING RECOMMENDED PRACTICE DNV-RP-E304 DAMAGE ASSESSMENT OF FIBRE ROPES FOR OFFSHORE MOORING APRIL 2005 FOREWORD (DNV) is a autoomous ad idepedet foudatio with the objectives of safeguardig life, property ad

More information

Available online at ScienceDirect. Procedia Engineering 113 (2015 )

Available online at  ScienceDirect. Procedia Engineering 113 (2015 ) Available olie at www.sciecedirect.com ScieceDirect rocedia Egieerig 3 (205 ) 30 305 Iteratioal Coferece o Oil ad Gas Egieerig, OGE-205 The twi spool efficiecy cotrol Michuri A.I. a *, Avtoomova I.V. a

More information

DFC NIST DIGITAL MASS FLOW CONTROLLERS. DFC with optional LCD readout PROG RS485. Programmable Mass Flow Controller with Digital Signal Processing

DFC NIST DIGITAL MASS FLOW CONTROLLERS. DFC with optional LCD readout PROG RS485. Programmable Mass Flow Controller with Digital Signal Processing Programmable Mass Flow Cotroller with Digital Sigal Processig Microprocessor drive digital flow cotrollers allow oe to program, record, ad aalyze flow rates of various gases with a computer via a RS-485

More information

Patrick Boston (Leeds University) and Mark Chapman (Edinburgh University)

Patrick Boston (Leeds University) and Mark Chapman (Edinburgh University) Iversio o requecy-depedet AVO data or luid properties Patric Bosto (Leeds Uiversity) ad Mar Chapma (Ediburgh Uiversity) Summary A umber o methods to estimate the requecy-depedece o relectivity have bee

More information

JOBST Elvarex Soft. Made for compliance

JOBST Elvarex Soft. Made for compliance JOBST Elvarex Soft Made for compliace JOBST Elvarex Soft Custom As experts i the field of lymphology, we developed JOBST Elvarex Soft custom-made for lower extremities ad for the arm. This soft, flat-kit

More information

Flygt low-speed mixers. Outstanding efficiency

Flygt low-speed mixers. Outstanding efficiency Flygt low-speed mixers Outstadig efficiecy INTRODUCTION Eergy-efficiet mixig Advatages of Flygt low-speed mixers Risig to the mixig challege All mixig applicatios require varyig degrees of both small-scale

More information

» WYOMING s RIDE 2013

» WYOMING s RIDE 2013 » WYOMING s RIDE 2013 WYOMING S RIDE 2013 preseted by First Iterstate Bak of Wyomig bikemswyomig.org 1 We are people who wat to do somethig about ow.» Our Wyomig Bike MS Ride Two-Day Wyomig Ride: To view

More information

Intersleek Pro. Divers Manual. Our World is Water CONTENTS

Intersleek Pro. Divers Manual. Our World is Water CONTENTS Itersleek Pro Divers Maual CONTENTS Itroductio.......................................2 Expectatios for Itersleek Pro........................3 I-Water Maiteace...............................4 Haulig the

More information

PERFORMANCE TEAM EVALUATION IN 2008 BEIJING OLYMPIC GAMES

PERFORMANCE TEAM EVALUATION IN 2008 BEIJING OLYMPIC GAMES XV INTERNATIONAL CONFERENCE ON INDUSTRIAL ENGINEERING AND OPERATIONS MANAGEMENT The Idustrial Egieerig ad the Sustaiable Developmet: Itegratig Techology ad Maagemet. Salvador, BA, Brazil, 06 to 09 October

More information

Operating Instructions SURGICAL POWER & ACCESSORIES

Operating Instructions SURGICAL POWER & ACCESSORIES SURGICAL POWER & ACCESSORIES Table of Cotets PAGE 2 PAGE 3-5 PAGE 6 Itroductio Warig Traiig Setup Illustratio Drill Motor Setup Quick Coectors Motor / Foot Cotrol Coectios Attachmet Istallatio Straight

More information

The new name for... Mines Rescue Service

The new name for... Mines Rescue Service Health ad Safety Traiig for all Idustries The ew ame for... Mies Rescue Service Expert traiig providers i: High Risk Etry ad Rescue Workig i Cofied Spaces Workig at Height Health ad Safety First Aid Fire

More information

Wondering where to start?

Wondering where to start? Woodbury YMCA Swim Lessos Schedule 2017 Late Fall October 30 - December 17 (651) 731-9507 ymcam.org/woodbury ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay safe aroud

More information

HYDRAULIC MOTORS MM APPLICATION CONTENTS GENERAL MOTORS

HYDRAULIC MOTORS MM APPLICATION CONTENTS GENERAL MOTORS HYDRULIC OORS OORS CONENS Specificatio data... 5 Fuctio diagrams... 6 8 Dimesios ad moutig... 9 1 Shaft extesios... 11 Permissible shaft loads... 11 Order code... 12 GENERL PPLICION Coveyors extile machies

More information

Footwork is the foundation for a skilled basketball player, involving moves

Footwork is the foundation for a skilled basketball player, involving moves The Complete Book of Offesive Basketball Drills Basic Footwork ad Cuts Drills 2 Equipmet 16 chairs (or less) Persoel The etire team Basic Footwork ad Cuts Drills Two coaches How to Ru the Drill Five feet

More information

Absolute Pressure Gauges: Bellow Type

Absolute Pressure Gauges: Bellow Type Absolute Pressure Gauges: Bellow Type MODEL : APBL Why Absolute Pressure Gauge? The atmospheric pressure varies from place to place depedig up o the altitude of the locatio ad prevailig weather coditios.

More information

Outline. Changing needs in Urban Traffic. Introduction The starting point Basic principles Analysis Facts Changes Context Solutions Key messages

Outline. Changing needs in Urban Traffic. Introduction The starting point Basic principles Analysis Facts Changes Context Solutions Key messages Chagig eeds i Urba Traffic Rob Methorst Chair COST 358 Pedestrias Quality Needs Cetre for Trasport ad Navigatio 27th of October 2011 Outlie Itroductio The startig poit Basic priciples Aalysis Facts Chages

More information

HERKIMER CENTRAL SCHOOL DISTRICT Herkimer Elementary School 255 Gros Boulevard Herkimer, New York 13350

HERKIMER CENTRAL SCHOOL DISTRICT Herkimer Elementary School 255 Gros Boulevard Herkimer, New York 13350 HERKIMER CENTRAL SCHOOL DISTRICT Herkimer Elemetary School 255 Gros Boulevard Herkimer, New York 13350 Robert J. Miller Superitedet ofschools 315-866-2230, Ext. 1302 FAX 315-866-2234 Reee L. Vogt, Pricipal

More information

Emma B. Howe YMCA Swim Lessons Schedule

Emma B. Howe YMCA Swim Lessons Schedule Emma B. Howe YMCA Swim Lessos Schedule 2018 Summer Jue 4 - September 9 (763) 785-7882 ymcam.org/emmabhowe ABOUT Y SWIM LESSONS The Y strives to help all ages lear how to swim, so they ca stay safe aroud

More information

Precautions for Total Hip Replacement Patients Only

Precautions for Total Hip Replacement Patients Only Precautios for Total Hip Replacemet Patiets Oly The followig is a list of precautios to keep you from dislocatig your hip. Dislocatig meas to move a body part out of its usual positio. Durig your stay

More information

Modelling Lane Changing Behaviour of Heavy Commercial Vehicles

Modelling Lane Changing Behaviour of Heavy Commercial Vehicles Modellig Lae Chagig Behaviour of Heavy Commercial Vehicles Modellig Lae Chagig Behaviour of Heavy Commercial Vehicles Sara Moridpour 1, Majid Sarvi 2, Geoff Rose 3 1 Post Graduate Studet, Moash Uiversity,

More information

A Data Envelopment Analysis Evaluation and Financial Resources Reallocation for Brazilian Olympic Sports

A Data Envelopment Analysis Evaluation and Financial Resources Reallocation for Brazilian Olympic Sports WSEAS TRANSACTIONS o SYSTEMS Reato Pescarii Valério, Lidia Agulo-Meza A Data Evelopmet Aalysis Evaluatio ad Fiacial Resources Reallocatio for Brazilia Olympic Sports RENATO PESCARINI VALÉRIO LIDIA ANGULO-MEZA

More information

GFC NIST MASS FLOW CONTROLLERS. Typical Stainless Steel GFC Mass Flow Controller. Design Features. General Description. Principles of Operation

GFC NIST MASS FLOW CONTROLLERS. Typical Stainless Steel GFC Mass Flow Controller. Design Features. General Description. Principles of Operation BULLETIN EM20180402 Model thermal Mass Flow Cotrollers are desiged to idicate ad cotrol set flow rates of gases. The combies the characteristics ad accuracy of covetioal mass flow devices ito a uique compact

More information

GFC NIST MASS FLOW CONTROLLERS. Typical Stainless Steel GFC Mass Flow Controller. Design Features. General Description. Principles of Operation

GFC NIST MASS FLOW CONTROLLERS. Typical Stainless Steel GFC Mass Flow Controller. Design Features. General Description. Principles of Operation Model thermal Mass Flow Cotrollers are desiged to idicate ad cotrol set flow rates of gases. The combies the characteristics ad accuracy of covetioal mass flow devices ito a uique compact desig at low

More information

Human-Robot Interaction: Group Behavior Level

Human-Robot Interaction: Group Behavior Level SPECOM'006, St. Petersburg, 5-9 Jue 006 Huma-Robot Iteractio: Group Behavior Level Lev Stakevich, Deis Trotsky Sait Petersburg State Techical Uiversity 9, Politechicheskaya, St. Petersburg, 955, Russia

More information

Load Calculation and Design of Roller Crowning of Truck Hub Bearing

Load Calculation and Design of Roller Crowning of Truck Hub Bearing Sed Orders for Reprits to reprits@bethamsciece.ae 106 The Ope Mechaical Egieerig Joural, 2015, 9, 106-110 Ope Access Load Calculatio ad Desig of Roller Crowig of Truck Hub Bearig Xitao Xia,1, Shujig Dog

More information

Headfirst Entry - Diving and Sliding

Headfirst Entry - Diving and Sliding 5/31/2011 Safe divig board use, safe slide use, usi Headfirst Etry - Divig ad Slidig POOLALARMS.COM HOME POOL SAFETY PRODUCTS POOL SAFETY ARTICLES & REPORTS POOL SAFETY LINKS & RESOURCES POOLALARMS.COM

More information

SYMMETRY AND VARIABILITY OF VERTICAL GROUND REACTION FORCE AND CENTER OF PRESSURE IN ABLE-BODIED GAIT

SYMMETRY AND VARIABILITY OF VERTICAL GROUND REACTION FORCE AND CENTER OF PRESSURE IN ABLE-BODIED GAIT SYMMETRY AND VARIABILITY OF VERTICAL GROUND REACTION FORCE AND CENTER OF PRESSURE IN ABLE-BODIED GAIT Yu Wag ad Kazuhiko Wataabe Graduate School of Educatio, Hiroshima Uiversity, Hiroshima, Japa, wagyu@hiroshima-u.ac.jp

More information

This report presents an assessment of existing and future parking & traffic requirements, for the site based on the current development proposal.

This report presents an assessment of existing and future parking & traffic requirements, for the site based on the current development proposal. CR166916b02 20 Jue 2017 Melida Dodso Melida Dodso Architects PO Box 5635 Hughes ACT 2605 Email: mdodso@melidadodsoarchitects.com.au Dear Melida, Project: Dickso Apartmets Lowrie St Re: Statemet o Parkig

More information

Version IV: April a publication from

Version IV: April a publication from Versio IV: April 2013 a publicatio from AWRF Associated Wire Rope Fabricators Recommeded Practice ad Guidelie Disclaimer for AWRF Recommeded Guidelie Swager Safety Guide Associated Wire Rope Fabricators

More information

MINNESOTA DEER MANAGEMENT

MINNESOTA DEER MANAGEMENT MINNESOTA DEER MANAGEMENT A study of huter opiios about deer populatios ad maagemet: Blocks H H5 Fial Report A cooperative study coducted by: Miesota Cooperative Fish ad Wildlife Research Uit Miesota Departmet

More information

Our club has a rich history that dates back to the turn of the 20th century.

Our club has a rich history that dates back to the turn of the 20th century. M E MB E R SHIP IN F O RM AT IO N 9 7 8-7 7 9-6 9 1 9 t h e i t e r at i o a l. c o m 1 5 9 B a l lv i l l e R d, B o lto, MA 01740 Dear Prospective Member Thak you for your iterest i membership at The

More information

Mining. Specialist rope solutions for the world s most demanding applications

Mining. Specialist rope solutions for the world s most demanding applications Miig Specialist rope solutios for the world s most demadig applicatios Global techology leader i the maufacture of wire ad rope solutios for the world s most demadig applicatios Drawig from a backgroud

More information

securing your safety

securing your safety securig your safety LIFE POINT PRO DEFIBRILLATOR AN AUTOMATED EXTERNAL DEFIBRILLATOR (AED) CAN BE THE DIFFERENCE BETWEEN LIFE AND DEATH. Statistics show that early 200,000 people die each year as a result

More information

Energy-efficient mixing

Energy-efficient mixing Flygt Mixers INTRODUCTION Eergy-efficiet mixig Advatages of Flygt low-speed mixers Risig to the mixig challege All mixig applicatios require varyig degrees of both small-scale turbulece ad bulk flow. With

More information

A Comparative Investigation of Reheat In Gas Turbine Cycles

A Comparative Investigation of Reheat In Gas Turbine Cycles Proceedigs of the Iteratioal Gas Turbie ogress 3 Tokyo November -7, 3 IGT3Tokyo TS-86 A omparative Ivestigatio of Reheat I Gas Turbie ycles K. Sarabchi Departmet of Mechaical egieerig Uiversity of Tabriz

More information

Real time lane departure warning system based on principal component analysis of grayscale distribution and risk evaluation model

Real time lane departure warning system based on principal component analysis of grayscale distribution and risk evaluation model DOI: 10.1007/s11771 014 2105 2 Real time lae departure warig system based o pricipal compoet aalysis of grayscale distributio ad risk evaluatio model ZHANG Wei wei( 张伟伟 ), SONG Xiao li( 宋晓琳 ), ZHANG Gui

More information

Characteristics of CNG Bubbles in Diesel Flow under the Influence of the Magnetic Field

Characteristics of CNG Bubbles in Diesel Flow under the Influence of the Magnetic Field Joural of Applied Fluid Mechaics, Vol. 10, No., pp. 149-155, 2017. Available olie at www.jafmolie.et, ISSN 1735-3572, EISSN 1735-345. DOI: 10.1889/acadpub.jafm.73.243.27148 Characteristics of CNG Bubbles

More information

University of California, Los Angeles Department of Statistics. Measures of central tendency and variation Data display

University of California, Los Angeles Department of Statistics. Measures of central tendency and variation Data display Uiversity of Califoria, Los Ageles Departmet of Statistics Statistics 13 Istructor: Nicolas Christou Measures of cetral tedecy Measures of cetral tedecy ad variatio Data display 1. Sample mea: Let x 1,

More information

Kentucky SCL National Core Indicators Data

Kentucky SCL National Core Indicators Data Kentucky SCL ational Core dicators Data 2013-2014 Laura. Butler Table of Contents DEMOGRAPHICS... 2 WORK... 7 RELATIOSHIPS... 11 WELLESS... 13 MEDICATIO... 14 HEALTH... 15 COMMUITY ICLUSIO... 18 CHOICE

More information

Active Travel The Role of Self-Selection in Explaining the Effect of Built Environment on Active Travel

Active Travel The Role of Self-Selection in Explaining the Effect of Built Environment on Active Travel Active Livig Research Buildig Evidece to Prevet Childhood Obesity ad Support Active Commuities RESE ARCH brief Fall 2009 activelivigresearch.org Active Travel The Role of Self-Selectio i Explaiig the Effect

More information

» COLORADO s RIDE 2013

» COLORADO s RIDE 2013 » COLORADO s RIDE 2013 COLORADO S RIDE 2013 bikemscolorado.org 1 We are people who wat to do somethig about ow.» COlorado 2-Day Ride Caledar of Evets o back 2 2013 Bike MS COLORADO MS Society Missio Statemet

More information

Range St. Dev. n Mean. Total Mean % Competency. Range St. Dev. n Mean. Total Mean % Competency

Range St. Dev. n Mean. Total Mean % Competency. Range St. Dev. n Mean. Total Mean % Competency CSWE Core Competecies - MSW 2013 MSW Program Dual Degree MSW/JD Program* *Due to the curret limited umber of Dual Degree studets, the MSW outcomes data represets outcomes for both programs. 1 : Idetify

More information

STRUCTURAL FILL, SONOTUBES, CONCRETE, GRAVEL, CLEAR SILICONE, ENGINEERED WOOD FIBRE (E.W.F.), GEO-TEXTILE, SOIL, PLANTS & MULCH ARE NOT SUPPLIED.

STRUCTURAL FILL, SONOTUBES, CONCRETE, GRAVEL, CLEAR SILICONE, ENGINEERED WOOD FIBRE (E.W.F.), GEO-TEXTILE, SOIL, PLANTS & MULCH ARE NOT SUPPLIED. SLIDE COMPOETS: ATURE'S ISTRUMETS I-PG-1002-01 TRIPLE RAIL HILL SLIDE. I PACKAGE ICLUDES:- HT. SLIDE FRAME: x 1 WITH PRE-ATTACHED SLIDE AD COLLAR WIG WALL POST: x 2 PRE-ASSEMBLED WIG WALL RAILIGS: x 2

More information

A Genetic Program for Breeding Racing Pigeons

A Genetic Program for Breeding Racing Pigeons A Geetic Program for Breedig Racig Pigeos Dave Shewmaker Shewmaker Geetics PO Box 460 Elk Grove, CA 95759-0460 www.shewmaker shewmaker.com dave@shewmaker shewmaker.com Overview My biases Urba Legeds vs

More information

ELIGIBILITY / LEVELS / VENUES

ELIGIBILITY / LEVELS / VENUES ELIGIBILITY / LEVELS / VENUES 10U - SQUIRT MINOR '09 & MAJOR '08 Eligibility: Top six teams i the league at each level will qualify based o regular seaso league play. Format: Divisioal crossover with semi-fial

More information

ELIGIBILITY / LEVELS / VENUES

ELIGIBILITY / LEVELS / VENUES ELIGIBILITY / LEVELS / VENUES 10U - SQUIRT MINOR '08 & MAJOR '07 Eligibility: Top six teams i the league at each level will qualify based o regular seaso league play. Format: Divisioal crossover with semi-fial

More information

ELIGIBILITY / LEVELS / VENUES

ELIGIBILITY / LEVELS / VENUES ELIGIBILITY / LEVELS / VENUES 10U - SQUIRT MINOR '08 & MAJOR '07 Eligibility: Top six teams i the league at each level will qualify based o regular seaso league play. Format: Divisioal crossover with semi-fial

More information

Syntax and Parsing II

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

More information

Chapter 10: File-System Interface Dr. Varin Chouvatut. Operating System Concepts 8 th Edition,

Chapter 10: File-System Interface Dr. Varin Chouvatut. Operating System Concepts 8 th Edition, Chapter 10: Fie-System Iterface Dr. Vari Chouvatut Operatig System Cocepts 8 th Editio, Siberschatz, Gavi ad Gage 2010 Chapter 10: Fie-System Iterface Fie Cocept Access Methods Directory Structure Fie-System

More information