Cloud Computing CS

Size: px
Start display at page:

Download "Cloud Computing CS"

Transcription

1 Cloud Computing CS Apache Mahout Feb 13, 2012 Shannon Quinn

2 MapReduce Review Scalable programming model Map phase Shuffle Reduce phase MapReduce Implementations Google Hadoop Map Phase Reduce Phase chunks C0 C1 C2 C3 mappers M0 M1 M2 M3 IO0 IO1 IO2 IO3 Shuffling Data Reducers R0 R1 FO0 FO1 Figure from lecture 6: MapReduce

3 MapReduce Review Scalable programming model Map phase Shuffle Reduce phase MapReduce Implementations Google Hadoop This is our focus! Map Phase Reduce Phase chunks C0 C1 C2 C3 mappers M0 M1 M2 M3 IO0 IO1 IO2 IO3 Shuffling Data Reducers R0 R1 FO0 FO1 Figure from lecture 6: MapReduce

4 Apache Mahout A scalable machine learning library

5 Apache Mahout A scalable machine learning library Built on Hadoop

6 Apache Mahout A scalable machine learning library Built on Hadoop Philosophy of Mahout (and Hadoop by proxy)

7 What does Mahout do?

8 Recommendation

9 Classification

10 Clustering

11 Other Mahout Algorithms Dimensionality Reduction Regression Evolutionary Algorithms

12 Mahout 1. Recommendation 2. Classification 3. Clustering

13 Recommendation Overview Help users find items they might like based on historical preferences

14 Recommendation Overview Mathematically

15 Recommendation Overview Alice Bob? 2 5 Peter *based on example by Sebastian Schelter

16 Recommendation Overview *based on example by Sebastian Schelter

17 Recommendation Overview Bob? *based on example by Sebastian Schelter

18 Recommendation Overview Bob *based on example by Sebastian Schelter

19 Recommendation in Mahout 1 st Map phase: process input *based on example by Sebastian Schelter

20 Recommendation in Mahout 1 st Map phase: process input *based on example by Sebastian Schelter 1 st Reduce phase: list by user

21 Recommendation in Mahout 2 nd Map phase: Emit co-occurred ratings *based on example by Sebastian Schelter

22 Recommendation in Mahout *based on example by Sebastian Schelter 2 nd Map phase: Emit co-occurred ratings 2 nd Reduce phase: Compute similarities

23 Mahout 1. Recommendation 2. Classification 3. Clustering

24 Classification Overview Assigning data to discrete categories

25 Classification Overview Assigning data to discrete categories Train a model on labeled data Spam Not spam

26 Classification Overview Spam? Not spam Assigning data to discrete categories Train a model on labeled data Run the model on new, unlabeled data

27 Naïve Bayes Example

28 Naïve Bayes Example Prob (token label) =

29 Naïve Bayes Example Not spam

30 Naïve Bayes Example Not spam President Obama s Nobel Prize Speech

31 Naïve Bayes Example Spam

32 Naïve Bayes Example Spam Spam content

33 Naïve Bayes Example

34 Naïve Bayes Example Order a trial Adobe chicken daily EAB-List new summer savings, welcome!

35 Naïve Bayes in Mahout Complex!

36 Naïve Bayes in Mahout Complex! Training 1. Read the features

37 Naïve Bayes in Mahout Complex! Training 1. Read the features 2. Calculate per-document statistics

38 Naïve Bayes in Mahout Complex! Training 1. Read the features 2. Calculate per-document statistics 3. Normalize across categories

39 Naïve Bayes in Mahout Complex! Training 1. Read the features 2. Calculate per-document statistics 3. Normalize across categories 4. Calculate normalizing factor of each label

40 Naïve Bayes in Mahout Complex! Training 1. Read the features 2. Calculate per-document statistics 3. Normalize across categories 4. Calculate normalizing factor of each label Testing Classification

41 Other Classification Algorithms Stochastic Gradient Descent

42 Other Classification Algorithms Stochastic Gradient Descent Support Vector Machines

43 Other Classification Algorithms Stochastic Gradient Descent Support Vector Machines Random Forests

44 Mahout 1. Recommendation 2. Classification 3. Clustering

45 Clustering Overview Grouping unstructured data

46 Clustering Overview Grouping unstructured data Small intra-cluster distance

47 Clustering Overview Grouping unstructured data Small intra-cluster distance Large inter-cluster distance

48 K-Means Clustering Example

49 K-Means Clustering Example

50 K-Means Clustering Example

51 K-Means Clustering Example

52 K-Means Clustering Example

53 K-Means Clustering Example

54 K-Means Clustering Example

55 K-Means Clustering Example

56 K-Means Clustering Example

57 K-Means Clustering Example Dogs Cats

58 K-Means Clustering in Mahout Map Phase chunks mappers C0 C1 C2 C3 M0 M1 M2 M3 + Reduce Phase IO0 IO1 IO2 IO3 Shuffling Data Reducers R0 R1 FO0 FO1 Figure from lecture 6: MapReduce

59 K-Means Clustering in Mahout Assume: # clusters <<< # points

60 K-Means Clustering in Mahout Assume: # clusters <<< # points M0 M1 M2 M3

61 K-Means Clustering in Mahout Assume: # clusters <<< # points M0 M1 M2 M3 <clusterid, observation> R0 R1

62 K-Means Clustering in Mahout Map phase: assign cluster IDs

63 K-Means Clustering in Mahout Map phase: assign cluster IDs Reduce phase: reset centroids

64 K-Means Clustering in Mahout Important notes --maxiter --convergencedelta method

65 Other Clustering Algorithms Latent Dirichlet Allocation Topic models

66 Other Clustering Algorithms Latent Dirichlet Allocation Topic models Fuzzy K-Means Points are assigned multiple clusters

67 Other Clustering Algorithms Latent Dirichlet Allocation Topic models Fuzzy K-Means Points are assigned multiple clusters Canopy clustering Fast approximations of clusters

68 Other Clustering Algorithms Latent Dirichlet Allocation Topic models Fuzzy K-Means Points are assigned multiple clusters Canopy clustering Fast approximations of clusters Spectral clustering Treat points as a graph

69 Other Clustering Algorithms Latent Dirichlet Allocation Topic models Fuzzy K-Means Points are assigned multiple clusters Canopy clustering Fast approximations of clusters Spectral clustering Treat points as a graph K-Means & Eigencuts

70 Mahout in Summary

71 Mahout in Summary Scalable library

72 Mahout in Summary Scalable library Three primary areas of focus

73 Mahout in Summary Scalable library Three primary areas of focus Other algorithms

74 Mahout in Summary Scalable library Three primary areas of focus Other algorithms All in your friendly neighborhood MapReduce

75 Mahout in Summary Scalable library Three primary areas of focus Other algorithms All in your friendly neighborhood MapReduce

76 Thank you!

About this Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Mahout

About this Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Mahout About this Tutorial Apache Mahout is an open source project that is primarily used in producing scalable machine learning algorithms. This brief tutorial provides a quick introduction to Apache Mahout

More information

2 Recommendation Engine 2.1 Data Collection. HapBeer: A Beer Recommendation Engine CS 229 Fall 2013 Final Project

2 Recommendation Engine 2.1 Data Collection. HapBeer: A Beer Recommendation Engine CS 229 Fall 2013 Final Project 1 Abstract HapBeer: A Beer Recommendation Engine CS 229 Fall 2013 Final Project This project looks to apply machine learning techniques in the area of beer recommendation and style prediction. The first

More information

Modeling Wine Quality Using Classification and Regression. Mario Wijaya MGT 8803 November 28, 2017

Modeling Wine Quality Using Classification and Regression. Mario Wijaya MGT 8803 November 28, 2017 Modeling Wine Quality Using Classification and Mario Wijaya MGT 8803 November 28, 2017 Motivation 1 Quality How to assess it? What makes a good quality wine? Good or Bad Wine? Subjective? Wine taster Who

More information

What Makes a Cuisine Unique?

What Makes a Cuisine Unique? What Makes a Cuisine Unique? Sunaya Shivakumar sshivak2@illinois.edu ABSTRACT There are many different national and cultural cuisines from around the world, but what makes each of them unique? We try to

More information

Predicting Wine Varietals from Professional Reviews

Predicting Wine Varietals from Professional Reviews Predicting Wine Varietals from Professional Reviews By Ron Tidhar, Eli Ben-Joseph, Kate Willison 11th December 2015 CS 229 - Machine Learning: Final Project - Stanford University Abstract This paper outlines

More information

-- Final exam logistics -- Please fill out course evaluation forms (THANKS!!!)

-- Final exam logistics -- Please fill out course evaluation forms (THANKS!!!) -- Final exam logistics -- Please fill out course evaluation forms (THANKS!!!) CS246: Mining Massive Datasets Jure Leskovec, Stanford University http://cs246.stanford.edu 3/12/18 Jure Leskovec, Stanford

More information

DATA MINING CAPSTONE FINAL REPORT

DATA MINING CAPSTONE FINAL REPORT DATA MINING CAPSTONE FINAL REPORT ABSTRACT This report is to summarize the tasks accomplished for the Data Mining Capstone. The tasks are based on yelp review data, majorly for restaurants. Six tasks are

More information

Wine Rating Prediction

Wine Rating Prediction CS 229 FALL 2017 1 Wine Rating Prediction Ke Xu (kexu@), Xixi Wang(xixiwang@) Abstract In this project, we want to predict rating points of wines based on the historical reviews from experts. The wine

More information

Predicting Wine Quality

Predicting Wine Quality March 8, 2016 Ilker Karakasoglu Predicting Wine Quality Problem description: You have been retained as a statistical consultant for a wine co-operative, and have been asked to analyze these data. Each

More information

Amazon Fine Food Reviews wait I don t know what they are reviewing

Amazon Fine Food Reviews wait I don t know what they are reviewing David Tsukiyama CSE 190 Dahta Mining and Predictive Analytics Professor Julian McAuley Amazon Fine Food Reviews wait I don t know what they are reviewing Dataset This paper uses Amazon Fine Food reviews

More information

What makes a good muffin? Ivan Ivanov. CS229 Final Project

What makes a good muffin? Ivan Ivanov. CS229 Final Project What makes a good muffin? Ivan Ivanov CS229 Final Project Introduction Today most cooking projects start off by consulting the Internet for recipes. A quick search for chocolate chip muffins returns a

More information

Learning the Language of Wine CS 229 Term Project - Final Report

Learning the Language of Wine CS 229 Term Project - Final Report Learning the Language of Wine CS 229 Term Project - Final Report Category: Team Members: Natural Language Aaron Effron (aeffron), Alyssa Ferris (acferris), David Tagliamonti (dtag) 1 Introduction & Motivation

More information

Parent Self Serve Mobile

Parent Self Serve Mobile Parent Self Serve Mobile Parent Self Serve Mobile is the mobile web application version of TEAMS Parent Self Serve. Parent Self Serve Mobile honors the same configuration options that are used for the

More information

DOI /j. cnki 欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟. R Rapid Miner Mahout

DOI /j. cnki 欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟欟. R Rapid Miner Mahout DOI 10. 16353 /j. cnki. 1000-7490. 2015. 03. 027 255049 * R Rapid Miner Mahout R Rapid Miner Mahout R Abstract According to the features of big data era this paper analyzes the main challenges that massive

More information

IT 403 Project Beer Advocate Analysis

IT 403 Project Beer Advocate Analysis 1. Exploratory Data Analysis (EDA) IT 403 Project Beer Advocate Analysis Beer Advocate is a membership-based reviews website where members rank different beers based on a wide number of categories. The

More information

Word Embeddings for NLP in Python. Marco Bonzanini PyCon Italia 2017

Word Embeddings for NLP in Python. Marco Bonzanini PyCon Italia 2017 Word Embeddings for NLP in Python Marco Bonzanini PyCon Italia 2017 Nice to meet you WORD EMBEDDINGS? Word Embeddings = Word Vectors = Distributed Representations Why should you care? Why should you care?

More information

The Market Potential for Exporting Bottled Wine to Mainland China (PRC)

The Market Potential for Exporting Bottled Wine to Mainland China (PRC) The Market Potential for Exporting Bottled Wine to Mainland China (PRC) The Machine Learning Element Data Reimagined SCOPE OF THE ANALYSIS This analysis was undertaken on behalf of a California company

More information

Online Appendix to. Are Two heads Better Than One: Team versus Individual Play in Signaling Games. David C. Cooper and John H.

Online Appendix to. Are Two heads Better Than One: Team versus Individual Play in Signaling Games. David C. Cooper and John H. Online Appendix to Are Two heads Better Than One: Team versus Individual Play in Signaling Games David C. Cooper and John H. Kagel This appendix contains a discussion of the robustness of the regression

More information

Click to edit Master title style Delivering World-Class Customer Service Through Lean Thinking

Click to edit Master title style Delivering World-Class Customer Service Through Lean Thinking 1 Delivering World-Class Customer Service Through Lean Thinking Starbucks Mission: To inspire and nurture the human spirit one person, one cup, and one neighborhood at a time Columbus Ohio Store Lane Avenue

More information

Abstract. Keywords: Gray Pine, Species Classification, Lidar, Hyperspectral, Elevation, Slope.

Abstract. Keywords: Gray Pine, Species Classification, Lidar, Hyperspectral, Elevation, Slope. Comparison of Hyperspectral Gray Pine Classification to Lidar Derived Elevation and Slope Andrew Fritter - Portland State & Quantum Spatial - afritter@pdx.edu Abstract The gray pine (GP) tree has been

More information

STACKING CUPS STEM CATEGORY TOPIC OVERVIEW STEM LESSON FOCUS OBJECTIVES MATERIALS. Math. Linear Equations

STACKING CUPS STEM CATEGORY TOPIC OVERVIEW STEM LESSON FOCUS OBJECTIVES MATERIALS. Math. Linear Equations STACKING CUPS STEM CATEGORY Math TOPIC Linear Equations OVERVIEW Students will work in small groups to stack Solo cups vs. Styrofoam cups to see how many of each it takes for the two stacks to be equal.

More information

Learning Connectivity Networks from High-Dimensional Point Processes

Learning Connectivity Networks from High-Dimensional Point Processes Learning Connectivity Networks from High-Dimensional Point Processes Ali Shojaie Department of Biostatistics University of Washington faculty.washington.edu/ashojaie Feb 21st 2018 Motivation: Unlocking

More information

Imputation of multivariate continuous data with non-ignorable missingness

Imputation of multivariate continuous data with non-ignorable missingness Imputation of multivariate continuous data with non-ignorable missingness Thais Paiva Jerry Reiter Department of Statistical Science Duke University NCRN Meeting Spring 2014 May 23, 2014 Thais Paiva, Jerry

More information

Starbucks Geography Summary

Starbucks Geography Summary Lesson Plans Starbucks Geography Starbucks Geography Summary Overview There are five lessons designed to teach basic geographic concepts. Each lesson uses Starbucks Coffee to help illustrate the main concepts.

More information

Missing value imputation in SAS: an intro to Proc MI and MIANALYZE

Missing value imputation in SAS: an intro to Proc MI and MIANALYZE Victoria SAS Users Group November 26, 2013 Missing value imputation in SAS: an intro to Proc MI and MIANALYZE Sylvain Tremblay SAS Canada Education Copyright 2010 SAS Institute Inc. All rights reserved.

More information

ARM4 Advances: Genetic Algorithm Improvements. Ed Downs & Gianluca Paganoni

ARM4 Advances: Genetic Algorithm Improvements. Ed Downs & Gianluca Paganoni ARM4 Advances: Genetic Algorithm Improvements Ed Downs & Gianluca Paganoni Artificial Intelligence In Trading, we want to identify trades that generate the most consistent profits over a long period of

More information

Analysis of Things (AoT)

Analysis of Things (AoT) Analysis of Things (AoT) Big Data & Machine Learning Applied to Brent Crude Executive Summary Data Selecting & Visualising Data We select historical, monthly, fundamental data We check for correlations

More information

Synchronous Systems. Asynchronous Circuit Design. Synchronous Disadvantages. Synchronous Advantages. Asynchronous Advantages. Asynchronous Systems

Synchronous Systems. Asynchronous Circuit Design. Synchronous Disadvantages. Synchronous Advantages. Asynchronous Advantages. Asynchronous Systems Synchronous Systems Asynchronous ircuit Design All events are synchronized to a single global clock. INPUTS hris J. Myers Lecture 1: Introduction Preface and hapter 1 omb. Logic Register OUTPUTS STATE

More information

-- CS341 info session is on Thu 3/18 7pm in Gates Final exam logistics

-- CS341 info session is on Thu 3/18 7pm in Gates Final exam logistics -- CS341 info session is on Thu 3/18 7pm in Gates104 -- Final exam logistics CS246: Mining Massive Datasets Jure Leskovec, Stanford University http://cs246.stanford.edu 3/10/2014 Jure Leskovec, Stanford

More information

Computerized Models for Shelf Life Prediction of Post-Harvest Coffee Sterilized Milk Drink

Computerized Models for Shelf Life Prediction of Post-Harvest Coffee Sterilized Milk Drink Libyan Agriculture esearch Center Journal International (6): 74-78, 011 ISSN 19-4304 IDOSI Publications, 011 Computerized Models for Shelf Life Prediction of Post-Harvest Coffee Sterilized Milk Drink 1

More information

GrillCam: A Real-time Eating Action Recognition System

GrillCam: A Real-time Eating Action Recognition System GrillCam: A Real-time Eating Action Recognition System Koichi Okamoto and Keiji Yanai The University of Electro-Communications, Tokyo 1-5-1 Chofu, Tokyo 182-8585, JAPAN {okamoto-k@mm.inf.uec.ac.jp,yanai@cs.uec.ac.jp}

More information

STA Module 6 The Normal Distribution

STA Module 6 The Normal Distribution STA 2023 Module 6 The Normal Distribution Learning Objectives 1. Explain what it means for a variable to be normally distributed or approximately normally distributed. 2. Explain the meaning of the parameters

More information

STA Module 6 The Normal Distribution. Learning Objectives. Examples of Normal Curves

STA Module 6 The Normal Distribution. Learning Objectives. Examples of Normal Curves STA 2023 Module 6 The Normal Distribution Learning Objectives 1. Explain what it means for a variable to be normally distributed or approximately normally distributed. 2. Explain the meaning of the parameters

More information

Weather Sensitive Adjustment Using the WSA Factor Method

Weather Sensitive Adjustment Using the WSA Factor Method Weather Sensitive Adjustment Using the WSA Factor Method Alternate CBLs can be requested within elrs to compensate for the temperature differences between the CBL basis days and the temperature of the

More information

Jure Leskovec Stanford University

Jure Leskovec Stanford University Jure Leskovec Stanford University Online friendships [Ugander-Karrer-Backstrom-Marlow, 11] Corporate e-mail communication [Adamic-Adar, 05] Social Transformation of Computing Technological networks intertwined

More information

Food Image Recognition by Deep Learning

Food Image Recognition by Deep Learning Food Image Recognition by Deep Learning Assoc. Prof. Steven HOI School of Information Systems Singapore Management University National Day Rally 2017: Singapore's War on Diabetes www.moh.gov.sg/budget2016

More information

Lesson 23: Newton s Law of Cooling

Lesson 23: Newton s Law of Cooling Student Outcomes Students apply knowledge of exponential functions and transformations of functions to a contextual situation. Lesson Notes Newton s Law of Cooling is a complex topic that appears in physics

More information

Multiple Imputation for Missing Data in KLoSA

Multiple Imputation for Missing Data in KLoSA Multiple Imputation for Missing Data in KLoSA Juwon Song Korea University and UCLA Contents 1. Missing Data and Missing Data Mechanisms 2. Imputation 3. Missing Data and Multiple Imputation in Baseline

More information

Decision making with incomplete information Some new developments. Rudolf Vetschera University of Vienna. Tamkang University May 15, 2017

Decision making with incomplete information Some new developments. Rudolf Vetschera University of Vienna. Tamkang University May 15, 2017 Decision making with incomplete information Some new developments Rudolf Vetschera University of Vienna Tamkang University May 15, 2017 Agenda Problem description Overview of methods Single parameter approaches

More information

6.2.2 Coffee machine example in Uppaal

6.2.2 Coffee machine example in Uppaal 6.2 Model checking algorithm for TCTL 95 6.2.2 Coffee machine example in Uppaal The problem is to model the behaviour of a system with three components, a coffee Machine, a Person and an Observer. The

More information

NVIVO 10 WORKSHOP. Hui Bian Office for Faculty Excellence BY HUI BIAN

NVIVO 10 WORKSHOP. Hui Bian Office for Faculty Excellence BY HUI BIAN NVIVO 10 WORKSHOP Hui Bian Office for Faculty Excellence BY HUI BIAN 1 CONTACT INFORMATION Email: bianh@ecu.edu Phone: 328-5428 Temporary Location: 1413 Joyner library Website: http://core.ecu.edu/ofe/statisticsresearch/

More information

AWRI Refrigeration Demand Calculator

AWRI Refrigeration Demand Calculator AWRI Refrigeration Demand Calculator Resources and expertise are readily available to wine producers to manage efficient refrigeration supply and plant capacity. However, efficient management of winery

More information

Learning to Use the Checklist. HealthLinkBC February 2014

Learning to Use the Checklist. HealthLinkBC February 2014 Learning to Use the Checklist HealthLinkBC February 2014 1 Outline 1. What are the Guidelines for Food and Beverage Sales in BC Schools? 2. What is the Checklist? 3. How do I use the Checklist? 4. How

More information

Unit of competency Content Activity. Element 1: Organise coffee workstation n/a n/a. Element 2: Select and grind coffee beans n/a n/a

Unit of competency Content Activity. Element 1: Organise coffee workstation n/a n/a. Element 2: Select and grind coffee beans n/a n/a SITHFAB005 Formative mapping Formative mapping SITHFAB005 Prepare and serve espresso coffee Unit of competency Content Activity Element 1: Organise coffee workstation n/a n/a 1.1 Complete mise en place

More information

Business Statistics /82 Spring 2011 Booth School of Business The University of Chicago Final Exam

Business Statistics /82 Spring 2011 Booth School of Business The University of Chicago Final Exam Business Statistics 41000-81/82 Spring 2011 Booth School of Business The University of Chicago Final Exam Name You may use a calculator and two cheat sheets. You have 3 hours. I pledge my honor that I

More information

DEVELOPING PROBLEM-SOLVING ABILITIES FOR MIDDLE SCHOOL STUDENTS

DEVELOPING PROBLEM-SOLVING ABILITIES FOR MIDDLE SCHOOL STUDENTS DEVELOPING PROBLEM-SOLVING ABILITIES FOR MIDDLE SCHOOL STUDENTS MAX WARSHAUER HIROKO WARSHAUER NAMA NAMAKSHI NCTM REGIONAL CONFERENCE & EXPOSITION CHICAGO, ILLINOIS NOVEMBER 29, 2012 OUTLINE Introduction

More information

Missing Data: Part 2 Implementing Multiple Imputation in STATA and SPSS. Carol B. Thompson Johns Hopkins Biostatistics Center SON Brown Bag 4/24/13

Missing Data: Part 2 Implementing Multiple Imputation in STATA and SPSS. Carol B. Thompson Johns Hopkins Biostatistics Center SON Brown Bag 4/24/13 Missing Data: Part 2 Implementing Multiple Imputation in STATA and SPSS Carol B. Thompson Johns Hopkins Biostatistics Center SON Brown Bag 4/24/13 Overview Reminder Steps in Multiple Imputation Implementation

More information

Multiplying Fractions

Multiplying Fractions Activity Summary In this activity, students will: Practice multiplying fractions in a practical Prior Knowledge Essential Skills Basic knowledge of multiplying fractions situation Revise a recipe using

More information

ZURICH SPM COURSE FEBRUARY 2015

ZURICH SPM COURSE FEBRUARY 2015 ZURICH SPM COURSE 2015 3 6 FEBRUARY 2015 We are pleased to announce that registration for the 2015 SPM Course in Zurich is now open! THIS FOUR-DAY COURSE, HELD ANNUALLY SINCE 2007, OFFERS COMPREHENSIVE

More information

IKAWA App V1 For USE WITH IKAWA COFFEE ROASTER. IKAWA Ltd. Unit 2 at 5 Durham Yard Bethnal Green London E2 6QF United Kingdom

IKAWA App V1 For USE WITH IKAWA COFFEE ROASTER. IKAWA Ltd. Unit 2 at 5 Durham Yard Bethnal Green London E2 6QF United Kingdom IKAWA App V1 For USE WITH IKAWA COFFEE ROASTER IKAWA Ltd. Unit 2 at 5 Durham Yard Bethnal Green London E2 6QF United Kingdom IMPORANT NOTICE The following instructions are for the IKAWApp, which is used

More information

Instruction (Manual) Document

Instruction (Manual) Document Instruction (Manual) Document This part should be filled by author before your submission. 1. Information about Author Your Surname Your First Name Your Country Your Email Address Your ID on our website

More information

Academic Year 2014/2015 Assessment Report. Bachelor of Science in Viticulture, Department of Viticulture and Enology

Academic Year 2014/2015 Assessment Report. Bachelor of Science in Viticulture, Department of Viticulture and Enology Academic Year 2014/2015 Assessment Report Bachelor of Science in Viticulture, Department of Viticulture and Enology Due to changes in faculty assignments, there was no SOAP coordinator for the Department

More information

1) What proportion of the districts has written policies regarding vending or a la carte foods?

1) What proportion of the districts has written policies regarding vending or a la carte foods? Rhode Island School Nutrition Environment Evaluation: Vending and a La Carte Food Policies Rhode Island Department of Education ETR Associates - Education Training Research Executive Summary Since 2001,

More information

benefits of electronic menu boards: for your business and your customers

benefits of electronic menu boards: for your business and your customers benefits of electronic menu boards: for your business and your customers 1 What are Electronic Menu Boards and How Are They Used? When a customer visits a restaurant, what s the first thing that they do?

More information

Flexible Working Arrangements, Collaboration, ICT and Innovation

Flexible Working Arrangements, Collaboration, ICT and Innovation Flexible Working Arrangements, Collaboration, ICT and Innovation A Panel Data Analysis Cristian Rotaru and Franklin Soriano Analytical Services Unit Economic Measurement Group (EMG) Workshop, Sydney 28-29

More information

BANKCOIN.global WHITE PAPER VER 1.6. BANKCOIN.global WHITE PAPER SEE 1.6

BANKCOIN.global WHITE PAPER VER 1.6. BANKCOIN.global WHITE PAPER SEE 1.6 BANKCOIN.global WHITE PAPER VER 1.6 BANKCOIN.global WHITE PAPER SEE 1.6 BANKCOIN.global is a new concept in cryptocurrency and digital assets on the internet cloud with highest security standards in a

More information

Asynchronous Circuit Design

Asynchronous Circuit Design Asynchronous Circuit Design Synchronous Advantages Slide 1 Chris J. Myers Lecture 1: Introduction Preface and Chapter 1 Slide 3 Simple way to implement sequencing. Widely taught and understood. Available

More information

Foodservice EUROPE. 10 countries analyzed: AUSTRIA BELGIUM FRANCE GERMANY ITALY NETHERLANDS PORTUGAL SPAIN SWITZERLAND UK

Foodservice EUROPE. 10 countries analyzed: AUSTRIA BELGIUM FRANCE GERMANY ITALY NETHERLANDS PORTUGAL SPAIN SWITZERLAND UK Foodservice EUROPE MARKET INSIGHTS & CHALLENGES 2015 2016 2017 2020 Innovative European Foodservice Experts 18, avenue Marcel Anthonioz BP 28 01220 Divonne-les-Bains - France 10 countries analyzed: AUSTRIA

More information

Flexible Imputation of Missing Data

Flexible Imputation of Missing Data Chapman & Hall/CRC Interdisciplinary Statistics Series Flexible Imputation of Missing Data Stef van Buuren TNO Leiden, The Netherlands University of Utrecht The Netherlands crc pness Taylor &l Francis

More information

Activity 10. Coffee Break. Introduction. Equipment Required. Collecting the Data

Activity 10. Coffee Break. Introduction. Equipment Required. Collecting the Data . Activity 10 Coffee Break Economists often use math to analyze growth trends for a company. Based on past performance, a mathematical equation or formula can sometimes be developed to help make predictions

More information

THE APPLICATION OF NATIONAL SINGLE WINDOW SYSTEM (KENYA TRADENET) IN PROCESSING OF CERTIFICATES OF ORIGIN. A case study of AFA-Coffee Directorate

THE APPLICATION OF NATIONAL SINGLE WINDOW SYSTEM (KENYA TRADENET) IN PROCESSING OF CERTIFICATES OF ORIGIN. A case study of AFA-Coffee Directorate THE APPLICATION OF NATIONAL SINGLE WINDOW SYSTEM (KENYA TRADENET) IN PROCESSING OF CERTIFICATES OF ORIGIN A case study of AFA-Coffee Directorate Presentation By: PAUL OKEWA VENUE: KICC, NAIROBI-KENYA DATE

More information

WINE RECOGNITION ANALYSIS BY USING DATA MINING

WINE RECOGNITION ANALYSIS BY USING DATA MINING 9 th International Research/Expert Conference Trends in the Development of Machinery and Associated Technology TMT 2005, Antalya, Turkey, 26-30 September, 2005 WINE RECOGNITION ANALYSIS BY USING DATA MINING

More information

Climate change may alter human physical activity patterns

Climate change may alter human physical activity patterns In the format provided by the authors and unedited. SUPPLEMENTARY INFORMATION VOLUME: 1 ARTICLE NUMBER: 0097 Climate change may alter human physical activity patterns Nick Obradovich and James H. Fowler

More information

Algorithms. How data is processed. Popescu

Algorithms. How data is processed. Popescu Algorithms How data is processed Popescu 2012 1 Algorithm definitions Effective method expressed as a finite list of well-defined instructions Google A set of rules to be followed in calculations or other

More information

#611-7 Workbook REVIEW OF PERCOLATION TESTING PROCEDURES. After completing this chapter, you will be able to...

#611-7 Workbook REVIEW OF PERCOLATION TESTING PROCEDURES. After completing this chapter, you will be able to... REVIEW OF PERCOLATION 7 TESTING PROCEDURES CHAPTER OBJECTIVES: After completing this chapter, you will be able to... Discuss the purpose of a percolation test. List the regulatory requirements for conducting

More information

Betty Crocker The Big Book Of Cakes (Betty Crocker Big Book) By Betty Crocker

Betty Crocker The Big Book Of Cakes (Betty Crocker Big Book) By Betty Crocker Betty Crocker The Big Book Of Cakes (Betty Crocker Big Book) By Betty Crocker If you are searching for the ebook Betty Crocker The Big Book of Cakes (Betty Crocker Big Book) by Betty Crocker in pdf format,

More information

JCAST. Department of Viticulture and Enology, B.S. in Viticulture

JCAST. Department of Viticulture and Enology, B.S. in Viticulture JCAST Department of Viticulture and Enology, B.S. in Viticulture Student Outcomes Assessment Plan (SOAP) I. Mission Statement The mission of the Department of Viticulture and Enology at California State

More information

Candidate Agreement. The American Wine School (AWS) WSET Level 4 Diploma in Wines & Spirits Program PURPOSE

Candidate Agreement. The American Wine School (AWS) WSET Level 4 Diploma in Wines & Spirits Program PURPOSE The American Wine School (AWS) WSET Level 4 Diploma in Wines & Spirits Program PURPOSE Candidate Agreement The purpose of this agreement is to ensure that all WSET Level 4 Diploma in Wines & Spirits candidates

More information

Rootstock Traits 2013

Rootstock Traits 2013 Rootstock Percent Tree size Cold hardy Bud 9 15 to 25 R Good Mark 25 Good M.9-Fl.56

More information

KEYWORDS:Classification, Discriminant Analysis, Wine Quality, PH, Residual Sugar

KEYWORDS:Classification, Discriminant Analysis, Wine Quality, PH, Residual Sugar IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY CLASSIFICATION OF WINES BASED ON QUALITY ASSESSMENT USING ITS CHEMICAL PROPERTIES WITH APPLICATION OF DISCRIMINANT ANALYSIS Arshpreet

More information

HW 5 SOLUTIONS Inference for Two Population Means

HW 5 SOLUTIONS Inference for Two Population Means HW 5 SOLUTIONS Inference for Two Population Means 1. The Type II Error rate, β = P{failing to reject H 0 H 0 is false}, for a hypothesis test was calculated to be β = 0.07. What is the power = P{rejecting

More information

Olea Head and Neck DCE VPMC-14290A

Olea Head and Neck DCE VPMC-14290A Olea Head and Neck DCE VPMC-14290A Olea Head and Neck DCE: Overview Olea Head and Neck DCE provides the following: Automatic or manual background segmentation Automatic or manual arterial input function

More information

Promote and support advanced computing to further Tier-One research and education at the University of Houston

Promote and support advanced computing to further Tier-One research and education at the University of Houston Promote and support advanced computing to further Tier-One research and education at the University of Houston Agenda CACDS Resources Operational changes Pricing structure Timeline Questions, discussion,

More information

VineAlert An Economic Impact Analysis

VineAlert An Economic Impact Analysis VineAlert An Economic Impact Analysis Goodman School of Business Consulting Group Goodman School of Business Cairns Complex Room 209A 500 Glenridge Ave. St. Cathararines, ON L2S-3A1 905-688-5550 Ext. 5104

More information

Sensory Characteristics and Consumer Acceptance of Mechanically Harvested California Black Ripe Olives

Sensory Characteristics and Consumer Acceptance of Mechanically Harvested California Black Ripe Olives Sensory Characteristics and Consumer Acceptance of Mechanically Harvested California Black Ripe Olives S.M. Lee, C. Sirimuangmoon, A. Gomez-Rico, K. Kitsawad, U. Rosa, J. Burns, W.H. Krueger, E. Fichtner,

More information

Step 1: Prepare To Use the System

Step 1: Prepare To Use the System Step : Prepare To Use the System PROCESS Step : Set-Up the System MAP Step : Prepare Your Menu Cycle MENU Step : Enter Your Menu Cycle Information MODULE Step 5: Prepare For Production Step 6: Execute

More information

How Many of Each Kind?

How Many of Each Kind? How Many of Each Kind? Abby and Bing Woo own a small bakery that specializes in cookies. They make only two kinds of cookies plain and iced. They need to decide how many dozens of each kind of cookie to

More information

SAP Fiori - Take Order

SAP Fiori - Take Order SAP Fiori - Take Order Story Betty is working 4 days a week as a waitress in Chili Diners, a very popular restaurant among young people. Every evening all tables are filled and there s a line of people

More information

4-H Food Preservation Proficiency Program A Member s Guide

4-H Food Preservation Proficiency Program A Member s Guide 4-H Food Preservation Proficiency Program A Member s Guide OVERVIEW The 4 H Food Preservation Proficiency program helps you learn what you need to know about your 4 H project. Your project leader will

More information

RELATIVE EFFICIENCY OF ESTIMATES BASED ON PERCENTAGES OF MISSINGNESS USING THREE IMPUTATION NUMBERS IN MULTIPLE IMPUTATION ANALYSIS ABSTRACT

RELATIVE EFFICIENCY OF ESTIMATES BASED ON PERCENTAGES OF MISSINGNESS USING THREE IMPUTATION NUMBERS IN MULTIPLE IMPUTATION ANALYSIS ABSTRACT RELATIVE EFFICIENCY OF ESTIMATES BASED ON PERCENTAGES OF MISSINGNESS USING THREE IMPUTATION NUMBERS IN MULTIPLE IMPUTATION ANALYSIS Nwakuya, M. T. (Ph.D) Department of Mathematics/Statistics University

More information

Appendix Table A1 Number of years since deregulation

Appendix Table A1 Number of years since deregulation Appendix Table A1 Number of years since deregulation This table presents the results of -in-s models incorporating the number of years since deregulation and using data for s with trade flows are above

More information

2. What is percolation? ETH Zürich, Spring semester 2018

2. What is percolation? ETH Zürich, Spring semester 2018 2. What is percolation? ETH Zürich, Spring semester 2018 Percolation: applied motivations Percolation: applied motivations Geology: How would water flow through these rocks? Percolation: applied motivations

More information

Protest Campaigns and Movement Success: Desegregating the U.S. South in the Early 1960s

Protest Campaigns and Movement Success: Desegregating the U.S. South in the Early 1960s Michael Biggs and Kenneth T. Andrews Protest Campaigns and Movement Success: Desegregating the U.S. South in the Early 1960s American Sociological Review SUPPLEMENT This supplement describes the results

More information

Wine Consumption Production

Wine Consumption Production Wine Consumption Production Yngve Skorge Nikola Golubovic Viktoria Lazarova ABSTRACT This paper will concentrate on both, the wine consumption and production in the world and the distribution of different

More information

4-H Food Preservation Proficiency

4-H Food Preservation Proficiency 4-H Food Preservation Proficiency OVERVIEW The 4-H Food Preservation Proficiency program helps you learn what you need to know about your 4-H project. Your project leader will assist you in setting and

More information

TOPIC 12. Motivation for Trade. Tuesday, March 27, 12

TOPIC 12. Motivation for Trade. Tuesday, March 27, 12 TOPIC 12 Motivation for Trade BIG PICTURE How significant is world trade to the global economy? Why does trade occur and what are the theoretical benefits of trade? How can we motivate prices in international

More information

Mating Disruption an AreawideApproach to Controlling the Borer Complex in cherry

Mating Disruption an AreawideApproach to Controlling the Borer Complex in cherry Mating Disruption an AreawideApproach to Controlling the Borer Complex in cherry N.L. Rothwell and K.L Powers NW Michigan Horticultural Research Center Borer Complex Pest complex consists of three species:

More information

ATKINS PHYSICAL CHEMISTRY PDF PDF

ATKINS PHYSICAL CHEMISTRY PDF PDF ATKINS PHYSICAL CHEMISTRY PDF PDF ==> Download: ATKINS PHYSICAL CHEMISTRY PDF PDF ATKINS PHYSICAL CHEMISTRY PDF PDF - Are you searching for Atkins Physical Chemistry Pdf Books? Now, you will be happy that

More information

Missing Data Methods (Part I): Multiple Imputation. Advanced Multivariate Statistical Methods Workshop

Missing Data Methods (Part I): Multiple Imputation. Advanced Multivariate Statistical Methods Workshop Missing Data Methods (Part I): Multiple Imputation Advanced Multivariate Statistical Methods Workshop University of Georgia: Institute for Interdisciplinary Research in Education and Human Development

More information

5 Populations Estimating Animal Populations by Using the Mark-Recapture Method

5 Populations Estimating Animal Populations by Using the Mark-Recapture Method Name: Period: 5 Populations Estimating Animal Populations by Using the Mark-Recapture Method Background Information: Lincoln-Peterson Sampling Techniques In the field, it is difficult to estimate the population

More information

AST Live November 2016 Roasting Module. Presenter: John Thompson Coffee Nexus Ltd, Scotland

AST Live November 2016 Roasting Module. Presenter: John Thompson Coffee Nexus Ltd, Scotland AST Live November 2016 Roasting Module Presenter: John Thompson Coffee Nexus Ltd, Scotland Session Overview Module Review Curriculum changes Exam changes Nordic Roaster Forum Panel assessment of roasting

More information

PBL, Projects, and Activities downloaded from NextLesson are provided on an online platform.

PBL, Projects, and Activities downloaded from NextLesson are provided on an online platform. PBL, Projects, and Activities downloaded from NextLesson are provided on an online platform. driving question *example lesson teacher guide, answer keys, links, and rubrics share with students customize

More information

A CASE STUDY: HOW CONSUMER INSIGHTS DROVE THE SUCCESSFUL LAUNCH OF A NEW RED WINE

A CASE STUDY: HOW CONSUMER INSIGHTS DROVE THE SUCCESSFUL LAUNCH OF A NEW RED WINE A CASE STUDY: HOW CONSUMER INSIGHTS DROVE THE SUCCESSFUL LAUNCH OF A NEW RED WINE Laure Blauvelt SSP 2010 0 Agenda Challenges of Wine Category Consumers: Foundation for Product Insights Successful Launch

More information

Menus of Change General Session 3 Changing Consumer Behaviors and Attitudes

Menus of Change General Session 3 Changing Consumer Behaviors and Attitudes Menus of Change General Session 3 Changing Consumer Behaviors and Attitudes Bringing Menus of Change to Life Google Food Michiel Bakker June 18, 2015 Today s menu Introducing Google Food The CIA & Google

More information

Esri Demographic Data Release Notes: Israel

Esri Demographic Data Release Notes: Israel Introduction The Esri demographic dataset for Israel provides key population and household attributes for use in a variety of applications. Release notes provide information such as the attribute list,

More information

1. Continuing the development and validation of mobile sensors. 3. Identifying and establishing variable rate management field trials

1. Continuing the development and validation of mobile sensors. 3. Identifying and establishing variable rate management field trials Project Overview The overall goal of this project is to deliver the tools, techniques, and information for spatial data driven variable rate management in commercial vineyards. Identified 2016 Needs: 1.

More information

ENGI E1006 Percolation Handout

ENGI E1006 Percolation Handout ENGI E1006 Percolation Handout NOTE: This is not your assignment. These are notes from lecture about your assignment. Be sure to actually read the assignment as posted on Courseworks and follow the instructions

More information

Enquiring About Tolerance (EAT) Study. Randomised controlled trial of early introduction of allergenic foods to induce tolerance in infants

Enquiring About Tolerance (EAT) Study. Randomised controlled trial of early introduction of allergenic foods to induce tolerance in infants Enquiring About Tolerance (EAT) Study Randomised controlled trial of early introduction of allergenic foods to induce tolerance in infants Final version 20/08/2012 STATISTICAL ANALYSIS PLAN FOR MAIN PAPER

More information

From VOC to IPA: This Beer s For You!

From VOC to IPA: This Beer s For You! From VOC to IPA: This Beer s For You! Joel Smith Statistician Minitab Inc. jsmith@minitab.com 2013 Minitab, Inc. Image courtesy of amazon.com The Data Online beer reviews Evaluated overall and: Appearance

More information

Cook Online Upgrading Pilot A Guide to Course Content

Cook Online Upgrading Pilot A Guide to Course Content Cook Online Upgrading Pilot A Guide to Course Content Cooks prepare, season and cook soups, meats, fish, poultry, vegetables and desserts. They make sauces, gravies and salads. They perform some meat cutting,

More information