Web Information Retrieval Dipl.-Inf. Christoph Carl Kling

Size: px
Start display at page:

Download "Web Information Retrieval Dipl.-Inf. Christoph Carl Kling"

Transcription

1 Institute for Web Science & Technologies University of Koblenz-Landau, Germany Web Information Retrieval Dipl.-Inf. Christoph Carl Kling

2 Exercises WebIR ask questions! 2 of 49

3 Clustering Coefficient (!= Transitivity ratio) Definitions: global clustering coefficient: local clustering\frac{ coefficient: 3 of 49

4 Clustering Coefficient (!= Transitivity ratio) 4 of 49

5 Clustering Coefficient (!= Transitivity ratio) 5 of 49

6 IR Document collection d1: Marcus try assassin Caesar. d2: Marcus Rome. d3: Caesar rule. Rome loyal Caesar hate. d4: loyal. People try assassin rule loyal. Terms: marcus,try,assassin,caesar,rome,rule,loyal,hate,people TF-IDF vectors: d1: (1,1,1,1,0,0,0,0,0) d2: (1,0,0,0,1,0,0,0,0) d3: (0,0,0,1,.5,.5,.5,1,0) d4: (0,.5,.5,0,0,.5,1,0,1) 6 of 49

7 Exercise: (Re)calculate the tf-idf scores for d1-d5. We use the log to base 2 (actually any log works). 7 of 49

8 Exercise: Prove that cosine-similarity and Euklidean distance yield an identical relative distance measure (e.g. between documents) when all document and query vectors are normalised to be of length 1. 8 of 49

9 Exercise: Prove that cosine-similarity and Euklidean distance yield an identical relative distance measure (e.g. between documents) when all document and query vectors are normalised to be of length 1. d7 d6 d6 normalise caesar d8 caesar assassin d7 d8 assassin 9 of 49

10 d7 d6 d6 normalise caesar d8 caesar assassin d7 d8 assassin 10 of 49

11 y * euklid cos x * * for normalised vectors of length 1 11 of 49

12 Given the search request Assassinate people The query is a binary vector again: q: (0,0,1,0,0,0,0,0,1) 12 of 49

13 q: (0,0,1,0,0,0,0,0,1) This time, we don't know which docs are relevant. Instead, we look at which documents have both a high score for the terms assassin and people. The relevance now is just the sum of the tf-idf weights for every word in the query. 13 of 49

14 The relevance now is just the sum of the tf-idf weights for every word in the query. For every document, we have to sum over its tf-idf scores for the words in the query. The tf-idf weights are stored in inverted indexes. 14 of 49

15 The tf-idf weights are stored in inverted indexes. assassin doc13: doc4: doc99: doc767: people doc99: doc6: doc13: doc4: caesar doc767: doc41: doc52: doc4: Score: sum of tfidf weights for search terms. For the query assassin people : doc13 has score 1.28 doc4 has score 0.33 doc99 has score of

16 The tf-idf weights are stored in inverted indexes. Score: sum of tfidf weights for search terms. This means, we have to do a join in a database, where we look up the score of every every document for all query terms and calculate the sum. Sounds bad. 16 of 49

17 To speed up the merging of tf-idf weights, documents can be ordered and we jump to buckets of document IDs when searching for an ID to join. (This is just what you did when searching a name in a phone book.) assassinate: people: of 49

18 18 of 49

19 The tf-idf weights are stored in inverted indexes. Our query is now: people assassin caesar By ordering the documents by their tfidf-score, we can speed up the process of calculating the K documents with the highest sum of tf-idf scores: assassin people g: of 49 caesar

20 20 of 49

21 assassin people g: of 49 caesar

22 assassin people g: of 49 caesar

23 assassin people g: of 49 caesar

24 assassin people g: of 49 caesar

25 25 of 49

26 Non-random-access algorithm: We only look at the first i rows. assassin people g: of 49 caesar

27 assassin 0.5 people 0.55 caesar Top 2 documents: Threshol Candidates: 27 of 49

28 assassin 0.5 people 0.55 caesar Top 2 documents: Threshol 1.4 Candidates: 28 of 49

29 assassin Top 2 documents: people 0.55 Threshol 1.4 Candidates: caesar 29 of 49

30 assassin Top 2 documents: people 0.55 Threshol 0.95 Candidates: 0.5 caesar 30 of 49

31 assassin people 0.55 caesar Top 2 documents: Threshol 0.95 Candidates: of 49

32 assassin people 0.55 caesar Top 2 documents: Threshol 0.75 Candidates: of 49

33 assassin people g: 0.55 caesar Top 2 documents: Threshol 0.75 Candidates: of 49

34 assassin people g: 0.55 caesar Top 2 documents: Threshol 0.6 Candidates: 0.7 g: 34 of 49

35 assassin people g: 0.55 caesar Top 2 documents: Candidates: 0.7 g: Threshol (min score in top-k) is bigger than the threshold of 0.6! We found the top-k documents! 35 of 49

36 Markov Chain Markov chain: We are interested in ergodic Markov chains: - homogeneous (transition probabilities fixed) - irreducible (every state always reachable) - aperiodic (greatest common divisor = 1 for recurrence) 36 of 49

37 Page Rank Transition probability: 1/number of links 37 of 49

38 Page Rank Exercise: Is this Markov chain ergodic? 38 of 49

39 Page Rank Random jump with ( normal jump with (1-e) = 0.7 ) the markov chain becomes ergodic! 39 of 49

40 Page Rank Transition matrix P (see board) Initial state 40 of 49

41 Page Rank Exercise: Calculate Will a converge? And why? 41 of 49

42 Markov Chain Authority scores Hub scores 42 of 49

43 Hubs and Authorities (or HITS) algorithm Authority scores Hub scores 43 of 49

44 Hubs and Authorities (or HITS) algorithm Authority scores Hub scores These vectors have to be normalised to sum to 1! 44 of 49

45 Hubs and Authorities (or HITS) algorithm Authority scores Hub scores :) 45 of 49

46 Hubs and Authorities (or HITS) algorithm Exercise: Calculate and normalise x and y after each step so that each sums to 1 (that is, the values can be interpreted vector as probabilities). 46 of 49

47 Page Rank Exercise: Hubs and Authorities - unlike Page Rank - does not take the whole web graph, but only a subset. Describe how the Hubs and Authority algorithm works! 47 of 49

48 48 of 49

49 49 of 49

Elements of Applied Stochastic Processes

Elements of Applied Stochastic Processes Elements of Applied Stochastic Processes Third Edition U. NARAYAN BHAT Southern Methodist University GREGORY K. MILLER Stephen E Austin State University,WILEY- INTERSCIENCE A JOHN WILEY & SONS, INC., PUBLICATION

More information

Scaling Document Clustering in the Cloud. Robert Gillen Computer Science Research Cloud Futures 2011

Scaling Document Clustering in the Cloud. Robert Gillen Computer Science Research Cloud Futures 2011 Scaling Document Clustering in the Cloud Robert Gillen Computer Science Research Cloud Futures 2011 Overview Introduction to Piranha Existing Limitations Current Solution Tracks Early Results & Future

More information

TECHNICAL REPORTS from the ELECTRONICS GROUP at the UNIVERSITY of OTAGO. Table of Multiple Feedback Shift Registers

TECHNICAL REPORTS from the ELECTRONICS GROUP at the UNIVERSITY of OTAGO. Table of Multiple Feedback Shift Registers ISSN 1172-496X ISSN 1172-4234 (Print) (Online) TECHNICAL REPORTS from the ELECTRONICS GROUP at the UNIVERSITY of OTAGO Table of Multiple Feedback Shift Registers by R. W. Ward, T.C.A. Molteno ELECTRONICS

More information

Lecture 2. Review of Linear Regression I Statistics Statistical Methods II. Presented January 9, 2018

Lecture 2. Review of Linear Regression I Statistics Statistical Methods II. Presented January 9, 2018 Review of Linear Regression I Statistics 211 - Statistical Methods II Presented January 9, 2018 Estimation of The OLS under normality the OLS Dan Gillen Department of Statistics University of California,

More information

Mathematics 43601H. Cumulative Frequency. In the style of General Certificate of Secondary Education Higher Tier. Past Paper Questions by Topic TOTAL

Mathematics 43601H. Cumulative Frequency. In the style of General Certificate of Secondary Education Higher Tier. Past Paper Questions by Topic TOTAL Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials In the style of General Certificate of Secondary Education Higher Tier Pages 2 3 4 5 Mark Mathematics

More information

Routing and Planning for the Last Mile Mobility System

Routing and Planning for the Last Mile Mobility System Routing and Planning for the Last Mile Mobility System Nguyen Viet Anh 30 October 2012 Nguyen Viet Anh () Routing and Planningfor the Last Mile Mobility System 30 October 2012 1 / 33 Outline 1 Introduction

More information

DOWNLOAD OR READ : MARKOV CHAINS ANALYTIC AND MONTE CARLO COMPUTATIONS PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : MARKOV CHAINS ANALYTIC AND MONTE CARLO COMPUTATIONS PDF EBOOK EPUB MOBI DOWNLOAD OR READ : MARKOV CHAINS ANALYTIC AND MONTE CARLO COMPUTATIONS PDF EBOOK EPUB MOBI Page 1 Page 2 markov chains analytic and monte carlo computations markov chains analytic and pdf markov chains

More information

From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here.

From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here. From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here. About this Book... ix About the Author... xiii Acknowledgments...xv Chapter 1 Introduction...

More information

Professor Dr. Gholamreza Nakhaeizadeh. Professor Dr. Gholamreza Nakhaeizadeh

Professor Dr. Gholamreza Nakhaeizadeh. Professor Dr. Gholamreza Nakhaeizadeh Statistic Methods in in Data Mining Business Understanding Data Understanding Data Preparation Deployment Modelling Evaluation Data Mining Process (Part 2) 2) Professor Dr. Gholamreza Nakhaeizadeh Professor

More information

Central Europe: Urban Typology Based on Airport Location and Accessibility

Central Europe: Urban Typology Based on Airport Location and Accessibility Central Europe: Urban Typology Based on Airport Location and Accessibility Daniel Seidenglanz Institute of Geography Faculty of Science Masaryk university Brno, Czech Republic seidenglanz@geogr.muni.cz

More information

Manual Taller Suzuki Grand Vitara 2008

Manual Taller Suzuki Grand Vitara 2008 Manual Taller Suzuki Grand Vitara 2008 If searched for the ebook Manual taller suzuki grand vitara 2008 in pdf format, then you've come to faithful website. We present the utter variation of this book

More information

Solar Panel with Mechanical Tracking

Solar Panel with Mechanical Tracking Solar Panel with Mechanical Tracking 1 Who s my kind of customer? 2 We want to attract a customer who requires a large quantity of solar panels. Therefore, these customers could be developing countries

More information

THE DOC'S BATTERY & CHARGER REVIEWS

THE DOC'S BATTERY & CHARGER REVIEWS THE DOC'S BATTERY & CHARGER REVIEWS REZAP 880 USB CHARGER REVIEW OCTOBER 2004 REPORT TABLE OF CONTENTS What is in the box?...2 User Instructions...3 Charger type (Universal or Mini)...3 Battery sizes catered

More information

Z-Score Summary - Concrete Proficiency Testing Program (70) Z-SCORES SUMMARY. Concrete April 2017 (70)

Z-Score Summary - Concrete Proficiency Testing Program (70)   Z-SCORES SUMMARY. Concrete April 2017 (70) www.labsmartservices.com.au Z-SCORES SUMMARY Concrete April 2017 (70) The proficiency program was conducted in April 2017 with participants throughout Australia. AS 1012 test methods were preferred but

More information

Preface... xi. A Word to the Practitioner... xi The Organization of the Book... xi Required Software... xii Accessing the Supplementary Content...

Preface... xi. A Word to the Practitioner... xi The Organization of the Book... xi Required Software... xii Accessing the Supplementary Content... Contents Preface... xi A Word to the Practitioner... xi The Organization of the Book... xi Required Software... xii Accessing the Supplementary Content... xii Chapter 1 Introducing Partial Least Squares...

More information

Dixon Power Invertor Manual

Dixon Power Invertor Manual Dixon Power Invertor Manual If you are searching for the book Dixon power invertor manual in pdf form, then you have come on to the faithful website. We presented the utter variation of this book in epub,

More information

Index. Calculator, 56, 64, 69, 135, 353 Calendars, 348, 356, 357, 364, 371, 381 Card game, NEL Index

Index. Calculator, 56, 64, 69, 135, 353 Calendars, 348, 356, 357, 364, 371, 381 Card game, NEL Index Index A Acute angle, 94 Adding decimal numbers, 47, 48 fractions, 210 213, 237 239, 241 integers, 310 322 mixed numbers, 245 248 Addition statement, 246, 248 Airport design, 88, 93, 99, 107, 121, 125 Analysing

More information

Unit 1 Chapter 3 Factors and Products

Unit 1 Chapter 3 Factors and Products Unit 1 Chapter 3 Factors and Products By the end of this unit, I should be able to Write a number as a product of its prime factors Explain why 0 and 1 have no prime factors Use prime factorization to:

More information

Part 1. The three levels to understanding how to achieve maximize traction.

Part 1. The three levels to understanding how to achieve maximize traction. Notes for the 2017 Prepare to Win Seminar Part 1. The three levels to understanding how to achieve maximize traction. Level 1 Understanding Weight Transfer and Tire Efficiency Principle #1 Total weight

More information

ECT Display Driver Installation for AP2 Module

ECT Display Driver Installation for AP2 Module ECT Display Driver Installation for AP2 Module Overview The ECT Display Driver is a small module with a removable wire harness that mounts behind the driver's foot well cover. All wiring connections are

More information

Interactive Text Mining of Service Calls to Improve Customer Support Michael Schuh & Ron Zhang Advanced Product Engineering Oshkosh Corporation

Interactive Text Mining of Service Calls to Improve Customer Support Michael Schuh & Ron Zhang Advanced Product Engineering Oshkosh Corporation Interactive Text Mining of Service Calls to Improve Customer Support Michael Schuh & Ron Zhang Advanced Product Engineering Oshkosh Corporation Outline Oshkosh Corporation Classification: Restricted Company

More information

Capacity-Achieving Accumulate-Repeat-Accumulate Codes for the BEC with Bounded Complexity

Capacity-Achieving Accumulate-Repeat-Accumulate Codes for the BEC with Bounded Complexity Capacity-Achieving Accumulate-Repeat-Accumulate Codes for the BEC with Bounded Complexity Igal Sason 1 and Henry D. Pfister 2 Department of Electrical Engineering 1 Techion Institute, Haifa, Israel Department

More information

Announcements. CS 188: Artificial Intelligence Fall So Far: Foundational Methods. Now: Advanced Applications.

Announcements. CS 188: Artificial Intelligence Fall So Far: Foundational Methods. Now: Advanced Applications. CS 188: Artificial Intelligence Fall 2010 Advanced Applications: Robotics / Vision / Language Announcements Project 5: Classification up now! Due date now after contest Also: drop-the-lowest Contest: In

More information

CS 188: Artificial Intelligence Fall Announcements

CS 188: Artificial Intelligence Fall Announcements CS 188: Artificial Intelligence Fall 2010 Advanced Applications: Robotics / Vision / Language Dan Klein UC Berkeley Many slides from Pieter Abbeel, John DeNero 1 Announcements Project 5: Classification

More information

CSC475 Music Information Retrieval

CSC475 Music Information Retrieval CSC475 Music Information Retrieval Tags and Music George Tzanetakis University of Victoria 2014 G. Tzanetakis 1 / 53 Table of Contents I 1 Indexing music with tags 2 Tag acquisition 3 Autotagging 4 Evaluation

More information

A Viewpoint on the Decoding of the Quadratic Residue Code of Length 89

A Viewpoint on the Decoding of the Quadratic Residue Code of Length 89 International Journal of Networks and Communications 2012, 2(1): 11-16 DOI: 10.5923/j.ijnc.20120201.02 A Viewpoint on the Decoding of the Quadratic Residue Code of Length 89 Hung-Peng Lee Department of

More information

ecognition of Prior Learning (RPL)

ecognition of Prior Learning (RPL) ecognition of Prior Learning (RPL) EVIDENCE GUIDE FOR INSPECT AND LUBRICATE AN AUTOMOTIVE SYSTEM Evidence Guide inspect and lubricate an automotive system Page 1 of 15 National Certificate in Professional

More information

Compilation of Results on the 2005 CEC Benchmark Function Set

Compilation of Results on the 2005 CEC Benchmark Function Set Compilation of Results on the 2005 CEC Benchmark Function Set Computational Laboratory (CoLab) Institute of Computational Science ETH Zurich May 4, 2006 A Note on Evaluation Criteria Quantitative performance

More information

A REPORT ON THE STATISTICAL CHARACTERISTICS of the Highlands Ability Battery CD

A REPORT ON THE STATISTICAL CHARACTERISTICS of the Highlands Ability Battery CD A REPORT ON THE STATISTICAL CHARACTERISTICS of the Highlands Ability Battery CD Prepared by F. Jay Breyer Jonathan Katz Michael Duran November 21, 2002 TABLE OF CONTENTS Introduction... 1 Data Determination

More information

2002 Dodge Stratus Rt Service Manual

2002 Dodge Stratus Rt Service Manual 2002 Dodge Stratus Rt Service Manual Dec 07, 2014 Dodge Stratus repair manual, service manual online: 2001, 2002, 2003, 2004, 2005, 2006 Covered Years: All production years including 01, 02, 03, 04, 05

More information

For 8-12 Year Olds. Fantastic Gears. Premium Worksheets For Children. Content: Marwah Illustrations: Dikhit Borah

For 8-12 Year Olds. Fantastic Gears. Premium Worksheets For Children. Content: Marwah Illustrations: Dikhit Borah For 8-12 ear Olds Fantastic Gears Premium Worksheets For Children Content: Marwah Illustrations: Dikhit Borah Index Activity Name Skills Acquired Types of Gears Missing Gears Geared Vehicles Get In Gear!

More information

Bmw R65 Workshop Manual

Bmw R65 Workshop Manual Bmw R65 Workshop Manual If you are looking for the book Bmw r65 workshop manual in pdf form, in that case you come on to the faithful website. We presented the complete variant of this ebook in txt, DjVu,

More information

PCC Conference on Pervasive Computing and Communications

PCC Conference on Pervasive Computing and Communications PCC 04 -- Conference on Pervasive Computing and Communications The 2004 International Multiconference in Computer Science & Computer Engineering June 21-24, 2004, Las Vegas, Nevada, USA, Monte Carlo Resort

More information

Tennessee Requirement for a Stamped VIN on Trailers

Tennessee Requirement for a Stamped VIN on Trailers Tennessee Requirement for a Stamped VIN on Trailers December 7, 2007 Question: Answer: Whether Tennessee law required the vehicle identification number (VIN) be permanently stamped on the metal tongue

More information

LEAP: LSC Evaluation and Achievement Program

LEAP: LSC Evaluation and Achievement Program LEAP: LSC Evaluation and Achievement Program Instructions for the LSC The LEAP online evaluation system is a tool to evaluate achievement and progress of the 59 LSCs. The program evaluates and helps identify

More information

The New ISO/CD Standard

The New ISO/CD Standard The New ISO/CD 16355 Standard and the Effect of Ratio Scale in QFD Thomas M. Fehlmann, Zürich Eberhard Kranich, Duisburg Euro Office AG E: info@e-p-o.com H: www.e-p-o.com Budapest, Hotel Kempinsky October

More information

1997 ACURA CL EGR VALVE GASKET MANUAL

1997 ACURA CL EGR VALVE GASKET MANUAL 22 October, 2017 1997 ACURA CL EGR VALVE GASKET MANUAL Document Filetype: PDF 256.28 KB 0 1997 ACURA CL EGR VALVE GASKET MANUAL So, is reading this book your great eager to read. That's what the book enpdfd

More information

Fundamentals of steam turbine systems

Fundamentals of steam turbine systems Principles of operation Fundamentals of steam turbine systems - The motive power in a steam turbine is obtained by the rate of change in momentum of a high velocity jet of steam impinging on a curved blade

More information

Student Exploration: Advanced Circuits

Student Exploration: Advanced Circuits Name: Date: Student Exploration: Advanced Circuits [Note to teachers and students: This Gizmo was designed as a follow-up to the Circuits Gizmo. We recommend doing that activity before trying this one.]

More information

Face Detection and Bi-Modal Authentication

Face Detection and Bi-Modal Authentication Face Detection and Bi-Modal Authentication Sébastien Marcel marcel@idiap.ch IDIAP Research Institute Martigny, Switzerland http://www.idiap.ch Sébastien Marcel, February 2005 p.1/20 Outline Introduction

More information

Manual Taller Suzuki Grand Vitara 2015

Manual Taller Suzuki Grand Vitara 2015 Manual Taller Suzuki Grand Vitara 2015 If you are searching for a book Manual taller suzuki grand vitara 2015 in pdf format, in that case you come on to the right site. We furnish utter release of this

More information

The usages of JOIN2 authority records

The usages of JOIN2 authority records The usages of JOIN2 authority records Robert Thiele, Katrin Große User Group Workshop 2017 Garching, 22/03/2017 https://bib-pubdb1.desy.de/record/318763 The Join² project: partners Powered by developed

More information

1 Bias-parity errors. MEMORANDUM November 19, Description

1 Bias-parity errors. MEMORANDUM November 19, Description MIT Kavli Institute Chandra X-Ray Center MEMORANDUM November 19, 2012 To: Jonathan McDowell, SDS Group Leader From: Glenn E. Allen, SDS Subject: Bias-parity error spec Revision: 0.4 URL: http://space.mit.edu/cxc/docs/docs.html#berr

More information

INTEGRATED SCHEDULING OF DRAYAGE AND LONG-HAUL TRANSPORT

INTEGRATED SCHEDULING OF DRAYAGE AND LONG-HAUL TRANSPORT INTEGRATED SCHEDULING OF DRAYAGE AND LONG-HAUL TRANSPORT Arturo E. Pérez Rivera & Martijn R.K. Mes Department of Industrial Engineering and Business Information Systems University of Twente, The Netherlands

More information

Descriptive Statistics Practice Problems (99-04)

Descriptive Statistics Practice Problems (99-04) Descriptive Statistics Practice Problems (99-04) 1. One thousand candidates sit an examination. The distribution of marks is shown in the following grouped frequency table. Marks 1 10 11 20 21 30 31 40

More information

Topic 5 Lecture 3 Estimating Policy Effects via the Simple Linear. Regression Model (SLRM) and the Ordinary Least Squares (OLS) Method

Topic 5 Lecture 3 Estimating Policy Effects via the Simple Linear. Regression Model (SLRM) and the Ordinary Least Squares (OLS) Method Econometrics for Health Policy, Health Economics, and Outcomes Research Topic 5 Lecture 3 Estimating Policy Effects via the Simple Linear Regression Model (SLRM) and the Ordinary Least Squares (OLS) Method

More information

arxiv: v1 [cs.lg] 2 Apr 2018 Anshul Ramachandran Computer Science California Institute of Technology

arxiv: v1 [cs.lg] 2 Apr 2018 Anshul Ramachandran Computer Science California Institute of Technology Predicting Electric Vehicle Charging Station Usage: Using Machine Learning to Estimate Individual Station Statistics from Physical Configurations of Charging Station Networks arxiv:1804.00714v1 [cs.lg]

More information

High technology theft-prevention systems

High technology theft-prevention systems Lemme In! Mazda 626 & MPV Immobilizer System High technology theft-prevention systems have hit the automotive market full-force. Several manufacturers now offer antitheft protection integrated with the

More information

Mandatory Experiment: Electric conduction

Mandatory Experiment: Electric conduction Name: Class: Mandatory Experiment: Electric conduction In this experiment, you will investigate how different materials affect the brightness of a bulb in a simple electric circuit. 1. Take a battery holder,

More information

Colorado Avalanche (Stanley Cup Champions)

Colorado Avalanche (Stanley Cup Champions) Colorado Avalanche (Stanley Cup Champions) John Nichols Click here if your download doesn"t start automatically Colorado Avalanche (Stanley Cup Champions) John Nichols Colorado Avalanche (Stanley Cup Champions)

More information

DC Food Truck Secondary Trading Platform

DC Food Truck Secondary Trading Platform DC Food Truck Secondary Trading Platform November 20, 2014 Dave Gupta Evan Schlessinger Vince Martinicchio Problem Definition Washington D.C. has limited supply of Prime locations for Food Trucks The current

More information

Chapter 9 Real World Driving

Chapter 9 Real World Driving Chapter 9 Real World Driving 9.1 Data collection The real world driving data were collected using the CMU Navlab 8 test vehicle, shown in Figure 9-1 [Pomerleau et al, 96]. A CCD camera is mounted on the

More information

The clutch tub. Iron Sportsters have wet clutches and dry clutches.

The clutch tub. Iron Sportsters have wet clutches and dry clutches. 1 of 10 7/12/2015 4:09 PM 1 of 10 The clutch tub Iron Sportsters have wet clutches and dry clutches. OK, most all the tubs in the Gorilla Rack are done, now onto that other rack full of tubs, with the

More information

MODULE 6 Lower Anchors & Tethers for CHildren

MODULE 6 Lower Anchors & Tethers for CHildren National Child Passenger Safety Certification Training Program MODULE 6 Lower Anchors & Tethers for CHildren Topic Module Agenda: 50 Minutes Suggested Timing 1. Introduction 2 2. Lower Anchors and Tether

More information

EVS28 KINTEX, Korea, May 3-6, 2015

EVS28 KINTEX, Korea, May 3-6, 2015 EVS28 KINTEX, Korea, May 3-6, 25 Pattern Prediction Model for Hybrid Electric Buses Based on Real-World Data Jing Wang, Yong Huang, Haiming Xie, Guangyu Tian * State Key laboratory of Automotive Safety

More information

PSD & Moisture Content (71) PROFICIENCY TESTING PROGRAM REPORT

PSD & Moisture Content (71) PROFICIENCY TESTING PROGRAM REPORT www.labsmartservices.com.au PSD & Moisture Content - 2017 (71) PROFICIENCY TESTING PROGRAM REPORT Accredited for compliance with ISO/IEC 17043 Copyright: LabSmart Services Pty Ltd Copyright: LabSmart Services

More information

Mercedes Benz C180 W202 Owners Manual

Mercedes Benz C180 W202 Owners Manual Mercedes Benz C180 W202 Owners Manual Amazon.co.uk: mercedes c180 manual. MERCEDES BENZ W202 C-CLASS OWNERS MANUAL HANDBOOK (1993-2000) - C180 C200 & DIESEL C220 & DIESEL C250 DIESEL 1994. Feb 22, 2010

More information

LET S ARGUE: STUDENT WORK PAMELA RAWSON. Baxter Academy for Technology & Science Portland, rawsonmath.

LET S ARGUE: STUDENT WORK PAMELA RAWSON. Baxter Academy for Technology & Science Portland, rawsonmath. LET S ARGUE: STUDENT WORK PAMELA RAWSON Baxter Academy for Technology & Science Portland, Maine pamela.rawson@gmail.com @rawsonmath rawsonmath.com Contents Student Movie Data Claims (Cycle 1)... 2 Student

More information

Property Testing and Affine Invariance Part II Madhu Sudan Harvard University

Property Testing and Affine Invariance Part II Madhu Sudan Harvard University Property Testing and Affine Invariance Part II Madhu Sudan Harvard University December 29-30, 2015 IITB: Property Testing & Affine Invariance 1 of 29 Review of last lecture Property testing: Test global

More information

Capacity-Achieving Accumulate-Repeat-Accumulate Codes for the BEC with Bounded Complexity

Capacity-Achieving Accumulate-Repeat-Accumulate Codes for the BEC with Bounded Complexity Capacity-Achieving Accumulate-Repeat-Accumulate Codes for the BEC with Bounded Complexity Igal Sason 1 and Henry D. Pfister 2 Department of Electrical Engineering 1 Techion Institute, Haifa, Israel School

More information

Keystone Fuzion Manual

Keystone Fuzion Manual Keystone Fuzion Manual If you are searching for the book Keystone fuzion manual in pdf format, then you've come to the faithful site. We furnish utter option of this book in PDF, txt, DjVu, epub, doc formats.

More information

ESSAYS ESSAY B ESSAY A and 2009 are given below:

ESSAYS ESSAY B ESSAY A and 2009 are given below: ESSAYS -7- -8- Suggested time: 5 minutes Maximum score: 120 points ESSAY A Suggested time: 5 minutes Maximum score: 120 points I. Define a time series and its components. Discuss the importance and the

More information

KISSsys 03/2015 Instruction 010

KISSsys 03/2015 Instruction 010 KISSsys 03/2015 Instruction 010 Positioning 07/04/2015 KISSsoft AG Rosengartenstrasse 4 8608 Bubikon Switzerland Tel: +41 55 254 20 50 Fax: +41 55 254 20 51 info@kisssoft.ag www.kisssoft.ag Contents 1.

More information

CARBON REDUCTION COMMITMENT ENERGY EFFICIENCY SCHEME. Merging Reports

CARBON REDUCTION COMMITMENT ENERGY EFFICIENCY SCHEME. Merging Reports CARBON REDUCTION COMMITMENT ENERGY EFFICIENCY SCHEME Merging Reports 2/9 This guide has been written to help customers with combining their CRC data in instances where two reports (one containing data

More information

Buying Secondhand A Racer s Guide

Buying Secondhand A Racer s Guide Buying Secondhand A Racer s Guide What to look for on engine & frame numbers Compiled with the assistance of: Metropolitan Police: Stolen Vehicle Unit Motorcycle News A Buyer s Guide NOTE: The full colour

More information

INSTALLATION INSTRUCTIONS

INSTALLATION INSTRUCTIONS INSTALLATION INSTRUCTIONS Disc Brake Spindle Kit SUM-BKA2447 1964-72 A-BODY 1967-69 F-BODY 1968-74 X-BODY Thank you for choosing SUMMIT RACING for your braking needs. Please take the time to read and carefully

More information

Real-time Bus Tracking using CrowdSourcing

Real-time Bus Tracking using CrowdSourcing Real-time Bus Tracking using CrowdSourcing R & D Project Report Submitted in partial fulfillment of the requirements for the degree of Master of Technology by Deepali Mittal 153050016 under the guidance

More information

Using Trip Information for PHEV Fuel Consumption Minimization

Using Trip Information for PHEV Fuel Consumption Minimization Using Trip Information for PHEV Fuel Consumption Minimization 27 th International Battery, Hybrid and Fuel Cell Electric Vehicle Symposium (EVS27) Barcelona, Nov. 17-20, 2013 Dominik Karbowski, Vivien

More information

TRINITY COLLEGE DUBLIN THE UNIVERSITY OF DUBLIN. Faculty of Engineering, Mathematics and Science. School of Computer Science and Statistics

TRINITY COLLEGE DUBLIN THE UNIVERSITY OF DUBLIN. Faculty of Engineering, Mathematics and Science. School of Computer Science and Statistics ST7003-1 TRINITY COLLEGE DUBLIN THE UNIVERSITY OF DUBLIN Faculty of Engineering, Mathematics and Science School of Computer Science and Statistics Postgraduate Certificate in Statistics Hilary Term 2015

More information

2016 Reporting Guide W Sharp Avenue, Spokane, WA POOL (7665)

2016 Reporting Guide W Sharp Avenue, Spokane, WA POOL (7665) 2016 Reporting Guide 1212 W Sharp Avenue, Spokane, WA 99201 STAvanpool@spokanetransit.com 509-326-POOL (7665) May 2016 Table of Contents Thank You Bookkeepers... 2 On-line Reporting for mileage & Ridership...

More information

Induction motors advantages of induction motors squirrel cage motor

Induction motors advantages of induction motors squirrel cage motor AC Motors With AC currents, we can reverse field directions without having to use brushes. This is good news, because we can avoid the arcing, the ozone production and the ohmic loss of energy that brushes

More information

Incremental Joint Extraction of Entity Mentions and Relations

Incremental Joint Extraction of Entity Mentions and Relations Incremental Joint Extraction of Entity Mentions and Relations Qi Li and Heng Ji {liq7,jih}@rpi.edu Rensselaer Polytechnic Institute End to End Relation Extraction Baltimore is the largest city in the U.S.

More information

Audi S4 Cabriolet Owners Manual READ ONLINE

Audi S4 Cabriolet Owners Manual READ ONLINE Audi S4 Cabriolet Owners Manual READ ONLINE Pdf Audi S4 Cabriolet Owners Manual with instruction 2008 audi s4 cabriolet, instruction 2008 audi s4 cabriolet and instruction 2008 audi s4 cabriolet This listing

More information

Civil Engineering and Environmental, Gadjah Mada University TRIP ASSIGNMENT. Introduction to Transportation Planning

Civil Engineering and Environmental, Gadjah Mada University TRIP ASSIGNMENT. Introduction to Transportation Planning Civil Engineering and Environmental, Gadjah Mada University TRIP ASSIGNMENT Introduction to Transportation Planning Dr.Eng. Muhammad Zudhy Irawan, S.T., M.T. INTRODUCTION Travelers try to find the best

More information

Road Surface characteristics and traffic accident rates on New Zealand s state highway network

Road Surface characteristics and traffic accident rates on New Zealand s state highway network Road Surface characteristics and traffic accident rates on New Zealand s state highway network Robert Davies Statistics Research Associates http://www.statsresearch.co.nz Joint work with Marian Loader,

More information

License Model Schedule Actuate License Models for the Open Text End User License Agreement ( EULA ) effective as of November, 2015

License Model Schedule Actuate License Models for the Open Text End User License Agreement ( EULA ) effective as of November, 2015 License Model Schedule Actuate License Models for the Open Text End User License Agreement ( EULA ) effective as of November, 2015 1) ACTUATE PRODUCT SPECIFIC SOFTWARE LICENSE PARAMETERS AND LIMITATIONS

More information

Mercedes Benz C200 Manual

Mercedes Benz C200 Manual Mercedes Benz C200 Manual If you are searched for the book Mercedes benz c200 manual in pdf form, in that case you come on to the right website. We furnish the full version of this book in epub, txt, DjVu,

More information

Set of T-uples Expansion by Example

Set of T-uples Expansion by Example Set of T-uples Expansion by Example A. Sanjaya, T. Abdessalem, S. Bressan November 23, 2016 A. Sanjaya, T. Abdessalem, S. Bressan Set of T-uples Expansion by Example November 23, 2016 1 / 18 Motivation

More information

The Honda CB750 SOHC Engine Problem:

The Honda CB750 SOHC Engine Problem: The Honda CB750 SOHC Engine Problem: When you look at the mechanics of the dual-row chain, it is apparent that the cost of two cheap single chains was a guiding factor of the design. The stock primary

More information

Adaptive diversification metaheuristic for the FSMVRPTW

Adaptive diversification metaheuristic for the FSMVRPTW Overview Adaptive diversification metaheuristic for the FSMVRPTW Olli Bräysy, University of Jyväskylä Pekka Hotokka, University of Jyväskylä Yuichi Nagata, Advanced Institute of Science and Technology

More information

ACOUSTIC EMISSION IN-SERVICE ACTIVE CORROSION MONITORING & ASSESSMENT ON ABOVE GROUND ATMOSPHERIC STORAGE TANK FLOORS

ACOUSTIC EMISSION IN-SERVICE ACTIVE CORROSION MONITORING & ASSESSMENT ON ABOVE GROUND ATMOSPHERIC STORAGE TANK FLOORS ACOUSTIC EMISSION IN-SERVICE ACTIVE CORROSION MONITORING & ASSESSMENT ON ABOVE GROUND ATMOSPHERIC STORAGE TANK FLOORS Dimitrios PAPASALOUROS, Konstantinos BOLLAS, Dimitrios KOUROUSIS, Athanasios ANASTASOPOULOS

More information

Dave Mark Intrinsic Algorithm Kevin Dill Lockheed Martin

Dave Mark Intrinsic Algorithm Kevin Dill Lockheed Martin Dave Mark Intrinsic Algorithm Kevin Dill Lockheed Martin More than just a bucket of floats Yes, it is complex (But so is behavior!) Organized construction leads to understandable complexity Often, more

More information

SHAFT ALIGNMENT FORWARD

SHAFT ALIGNMENT FORWARD Service Application Manual SAM Chapter 630-76 Section 24 SHAFT ALIGNMENT FORWARD One of the basic problems of any installation is aligning couplings or shafts. Therefore, this section will endeavor to

More information

PT1 9wk Test Study Guide

PT1 9wk Test Study Guide PT1 9wk Test Study Guide Name: Your 9-wk test is on Thursday March 28. You are required to complete this study guide by middle of class Wednesday March 27. It will be counted as an assignment grade. Complete

More information

Australian Standard. Pneumatic fluid power General requirements for systems (ISO 4414:1998, MOD) AS AS 2788

Australian Standard. Pneumatic fluid power General requirements for systems (ISO 4414:1998, MOD) AS AS 2788 AS 2788 2002 AS 2788 Australian Standard Pneumatic fluid power General requirements for systems (ISO 4414:1998, MOD) This Australian Standard was prepared by Committee ME-035, Fluid Power Systems and Components.

More information

Baxi Luna 310 Fi User Manual

Baxi Luna 310 Fi User Manual Baxi Luna 310 Fi User Manual BAXI Luna 310 Fi Service Manual English BAXI Luna 310 Fi User's Guide French BAXI Luna 310 Fi Installation Manual French New search > [English] [Fran ais] Baxi Luna HT 1.330

More information

If searching for the book Vespa px200e manual in pdf format, then you've come to the faithful website. We furnish the complete variation of this

If searching for the book Vespa px200e manual in pdf format, then you've come to the faithful website. We furnish the complete variation of this Vespa Px200e Manual If searching for the book Vespa px200e manual in pdf format, then you've come to the faithful website. We furnish the complete variation of this ebook in epub, txt, doc, DjVu, PDF formats.

More information

A PRACTICAL GUIDE TO RACE CAR DATA ANALYSIS BY BOB KNOX DOWNLOAD EBOOK : A PRACTICAL GUIDE TO RACE CAR DATA ANALYSIS BY BOB KNOX PDF

A PRACTICAL GUIDE TO RACE CAR DATA ANALYSIS BY BOB KNOX DOWNLOAD EBOOK : A PRACTICAL GUIDE TO RACE CAR DATA ANALYSIS BY BOB KNOX PDF Read Online and Download Ebook A PRACTICAL GUIDE TO RACE CAR DATA ANALYSIS BY BOB KNOX DOWNLOAD EBOOK : A PRACTICAL GUIDE TO RACE CAR DATA ANALYSIS BY BOB KNOX PDF Click link bellow and free register to

More information

2002 Dodge Stratus Rt Service Manual

2002 Dodge Stratus Rt Service Manual 2002 Dodge Stratus Rt Service Manual If you are searched for a ebook 2002 dodge stratus rt service manual in pdf format, in that case you come on to loyal site. We present full variation of this book in

More information

Enhancing Energy Efficiency of Database Applications Using SSDs

Enhancing Energy Efficiency of Database Applications Using SSDs Seminar Energy-Efficient Databases 29.06.2011 Enhancing Energy Efficiency of Database Applications Using SSDs Felix Martin Schuhknecht Motivation vs. Energy-Efficiency Seminar 29.06.2011 Felix Martin Schuhknecht

More information

Appendix B STATISTICAL TABLES OVERVIEW

Appendix B STATISTICAL TABLES OVERVIEW Appendix B STATISTICAL TABLES OVERVIEW Table B.1: Proportions of the Area Under the Normal Curve Table B.2: 1200 Two-Digit Random Numbers Table B.3: Critical Values for Student s t-test Table B.4: Power

More information

55-64 Full Size GM (Impala, Bel Air, etc.) This kit is for axles with a 3 3/8 spread center to center on the top two bolt holes (pictured left).

55-64 Full Size GM (Impala, Bel Air, etc.) This kit is for axles with a 3 3/8 spread center to center on the top two bolt holes (pictured left). SUM-BK1624A Full Size GM Installation Instructions Rear Disc Conversion 55-64 Full Size GM (Impala, Bel Air, etc.) This kit is for axles with a 3 3/8 spread center to center on the top two bolt holes (pictured

More information

LECTURE 3: Relational Algebra THESE SLIDES ARE BASED ON YOUR TEXT BOOK

LECTURE 3: Relational Algebra THESE SLIDES ARE BASED ON YOUR TEXT BOOK LECTURE 3: Relational Algebra THESE SLIDES ARE BASED ON YOUR TEXT BOOK Query Languages For manipulation and retrieval of stored data Relational model supports simple yet powerful query languages Query

More information

Siemens Hybrid Power Solutions. Technical and Financial Simulation Tools for High Penetration Hybrid Power Systems, Bangkok June 2015

Siemens Hybrid Power Solutions. Technical and Financial Simulation Tools for High Penetration Hybrid Power Systems, Bangkok June 2015 Siemens Hybrid Power Solutions Technical and Financial Simulation Tools for High Penetration Hybrid Power Systems, Bangkok June 2015 Instrumentation, Controls & Electrical Overview 1. Applications 2. High

More information

Chevy S Cylinder Engine Manual

Chevy S Cylinder Engine Manual Chevy S10 2015 4 Cylinder Engine Manual If searching for the book Chevy s10 2015 4 cylinder engine manual in pdf format, in that case you come on to the loyal website. We presented the utter version of

More information

Volvo Canada Xc60 Manual 2015 READ ONLINE

Volvo Canada Xc60 Manual 2015 READ ONLINE Volvo Canada Xc60 Manual 2015 READ ONLINE If looking for a book Volvo canada xc60 manual 2015 in pdf form, then you've come to faithful site. We furnish full release of this book in doc, txt, PDF, epub,

More information

Some new distance-4 constant weight codes

Some new distance-4 constant weight codes Some new distance-4 constant weight codes A. E. Brouwer & T. Etzion 2010-02-15 Abstract Improved binary constant weight codes with minimum distance 4 and length at most 28 are constructed. A table with

More information

Powertrain Performance vs. engine performance

Powertrain Performance vs. engine performance Powertrain Performance vs. engine performance White paper May 2005 Published by Rototest Research Institute Copyright Rototest Research Institute 2005, all rights reserved / www.rri.se / EDU PTP-N05061201-WP.PPT

More information

Searching for Patterns in Series and Parallel Circuits

Searching for Patterns in Series and Parallel Circuits Searching for Patterns in Series and Parallel Circuits Use the Circuit Construction Kit on phet.colorado.edu (DC Circuits only) to build the following circuits. fter building each circuit, use the ammeter

More information

What s cooking. Bernd Wiswedel KNIME.com AG. All Rights Reserved.

What s cooking. Bernd Wiswedel KNIME.com AG. All Rights Reserved. What s cooking Bernd Wiswedel 2016 KNIME.com AG. All Rights Reserved. Outline Continued development of all products, including KNIME Server KNIME Analytics Platform KNIME Big Data Extensions (discussed

More information