ORIE 4741: Learning with Big Messy Data. Introduction

Size: px
Start display at page:

Download "ORIE 4741: Learning with Big Messy Data. Introduction"

Transcription

1 ORIE 4741: Learning with Big Messy Data Introduction Professor Udell Operations Research and Information Engineering Cornell September 15, / 33

2 Outline Stories Definitions Kinds of learning Syllabus Logistics 2 / 33

3 Oh, you work with big messy data? Maybe you could help us out...? 3 / 33

4 Demography age gender state income education 29 F CT $53,000 college 57? NY $19,000 high school? M CA $102,000 masters 41 F NV $23,000? / 33

5 Medicine 5 / 33

6 Medicine age gender heart disease statins? 29 F yes no 57? no no? M no no 41 F yes yes / 33

7 Medicine 7 / 33

8 Pollution [Snow, 1854] 8 / 33

9 Pollution location time CO2 O2 O ? ? / 33

10 Marketing 10 / 33

11 Marketing customer product 1 product 2 product 3 1 yes? yes 2 yes yes? 3?? yes / 33

12 Finance 12 / 33

13 Finance ticker t 1 t 2 AAPL GOOG FB / 33

14 14 / 33

15 Data by Volume 15 / 33

16 Outline Stories Definitions Kinds of learning Syllabus Logistics 16 / 33

17 Big NASA, 1997: taxing the capacities of main memory, local disk, and even remote disk 1 image courtesy of Kim IBM 17 / 33

18 Big NASA, 1997: taxing the capacities of main memory, local disk, and even remote disk OED, 2015: data of a very large size, typically to the extent that its manipulation and management present significant logistical challenges 1 image courtesy of Kim IBM 17 / 33

19 Big NASA, 1997: taxing the capacities of main memory, local disk, and even remote disk OED, 2015: data of a very large size, typically to the extent that its manipulation and management present significant logistical challenges 4 Vs: 1 1 image courtesy of Kim IBM 17 / 33

20 Big NASA, 1997: taxing the capacities of main memory, local disk, and even remote disk OED, 2015: data of a very large size, typically to the extent that its manipulation and management present significant logistical challenges 4 Vs: 5th V: value 1 image courtesy of Kim IBM 1 17 / 33

21 Big: our definition Definition An algorithm for big data is one with computational and memory requirements that scale linearly (or nearly linearly) in the size of the data. 18 / 33

22 Big: our definition Definition An algorithm for big data is one with computational and memory requirements that scale linearly (or nearly linearly) in the size of the data. why this definition? independent of hardware business 18 / 33

23 Big: our definition Definition An algorithm for big data is one with computational and memory requirements that scale linearly (or nearly linearly) in the size of the data. why this definition? independent of hardware business if you use only algorithms for big data, then you re working with big data 18 / 33

24 Messy noisy: some (or all) values suffer errors, inaccuracies, or malicious corruption 19 / 33

25 Messy noisy: some (or all) values suffer errors, inaccuracies, or malicious corruption missing: some values are missing, inconsistent, not recorded, or lost 19 / 33

26 Messy noisy: some (or all) values suffer errors, inaccuracies, or malicious corruption missing: some values are missing, inconsistent, not recorded, or lost heterogeneous: values of many different types continuous values (e.g., 4.2, π) discrete values (e.g., 0, 4, 994) nominal values (e.g., apple, banana, pear) ordinal values (e.g., rarely, sometimes, often) graphs or networks (e.g., person 1 is friends with person 2) text (e.g., doctor s note describing symptoms) sets (e.g., items purchased) 19 / 33

27 Learning 20 / 33

28 Learning machine learning? 20 / 33

29 Learning machine learning? human learning? 20 / 33

30 Learning machine learning? human learning? when data is big and messy, machine help is essential for human learning! 20 / 33

31 Data table n examples (patients, respondents, households, assets) d features (tests, questions, sensors, times) a 11 a 1d A =..... a n1 a nd a i is ith row of A: feature vector for ith example a :j is jth column of A: values for jth feature across all examples a ij is jth feature of ith example 21 / 33

32 Outline Stories Definitions Kinds of learning Syllabus Logistics 22 / 33

33 Supervised learning identify one column of data that we want to predict x 11 x 1 d 1 y 1 A = = X y x n1 x n d 1 y n x i X for i = 1,..., n are rows of X y i Y for i = 1,..., n are entries of y 23 / 33

34 Supervised learning identify one column of data that we want to predict x 11 x 1 d 1 y 1 A = = X y x n1 x n d 1 y n x i X for i = 1,..., n are rows of X y i Y for i = 1,..., n are entries of y we believe there is a mapping f : X Y our goal is to learn f y i f (x i ) 23 / 33

35 Example: supervised learning for credit card applications goal: decide which credit card applicants should be approved input space: entries of X R d correspond to fields in credit application e.g., salary, years in residence, outstanding debt, number of credit lines,... output space: Y = {+1, 1} +1 means approve 1 means reject data: D = (x 1, y 1 ),..., (x n, y n ) give credit applications of previous customers, and correct decisions in hindsight 24 / 33

36 Example: supervised learning for credit card applications goal: decide which credit card applicants should be approved input space: entries of X R d correspond to fields in credit application e.g., salary, years in residence, outstanding debt, number of credit lines,... output space: Y = {+1, 1} +1 means approve 1 means reject data: D = (x 1, y 1 ),..., (x n, y n ) give credit applications of previous customers, and correct decisions in hindsight noise? 24 / 33

37 Exercise: formalizing real problems identify a prediction goal identify the input space X identify the output space Y identify the data D = (x 1, y 1 ),..., (x n, y n ) you d like to use what kinds of noise do you expect in the data? 25 / 33

38 Kinds of learning 26 / 33

39 Kinds of learning Supervised learning: given (x 1, y 1 ),..., (x n, y n ), learn f (x) = y 26 / 33

40 Kinds of learning Supervised learning: given (x 1, y 1 ),..., (x n, y n ), learn f (x) = y Unsupervised learning: given x 1,..., x n, learn patterns or structure 26 / 33

41 Kinds of learning Supervised learning: given (x 1, y 1 ),..., (x n, y n ), learn f (x) = y Unsupervised learning: given x 1,..., x n, learn patterns or structure Online learning: for i = 1,..., n, given x i, predict and observe y i, learn f (x) = y 26 / 33

42 Kinds of learning Supervised learning: given (x 1, y 1 ),..., (x n, y n ), learn f (x) = y Unsupervised learning: given x 1,..., x n, learn patterns or structure Online learning: for i = 1,..., n, given x i, predict and observe y i, learn f (x) = y Active learning: for i = 1,..., n, choose x i, predict and observe y i, learn f (x) = y 26 / 33

43 Kinds of learning Supervised learning: given (x 1, y 1 ),..., (x n, y n ), learn f (x) = y Unsupervised learning: given x 1,..., x n, learn patterns or structure Online learning: for i = 1,..., n, given x i, predict and observe y i, learn f (x) = y Active learning: for i = 1,..., n, choose x i, predict and observe y i, learn f (x) = y Reinforcement learning: for i = 1,..., n, choose x i, predict y i, observe reward r i, learn f (x) = y 26 / 33

44 Kinds of learning Supervised learning: given (x 1, y 1 ),..., (x n, y n ), learn f (x) = y Unsupervised learning: given x 1,..., x n, learn patterns or structure Online learning: for i = 1,..., n, given x i, predict and observe y i, learn f (x) = y Active learning: for i = 1,..., n, choose x i, predict and observe y i, learn f (x) = y Reinforcement learning: for i = 1,..., n, choose x i, predict y i, observe reward r i, learn f (x) = y this class: mostly supervised and unsupervised learning 26 / 33

45 Outline Stories Definitions Kinds of learning Syllabus Logistics 27 / 33

46 Course objectives (I) plot predict cluster impute denoise recommend understand 28 / 33

47 Course objectives (II) at the end of the course, you should have learned at least one method to solve any problem when not to trust your solution 29 / 33

48 Course objectives (II) at the end of the course, you should have learned at least one method to solve any problem when not to trust your solution the rest you can learn online / 33

49 Outline Stories Definitions Kinds of learning Syllabus Logistics 30 / 33

50 This class algorithms for big messy data learning to ask the right questions course website: (grading, course requirements, lectures, homework, etc) 31 / 33

51 Next steps ASAP: enroll (or drop) (or get on wait list) fill out course survey before next lecture: post a question or comment to piazza about this lecture due 8/29/17: homework 0... links on course website 32 / 33

52 Questions? 33 / 33

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur Module 12 Machine Learning 12.1 Instructional Objective The students should understand the concept of learning systems Students should learn about different aspects of a learning system Students should

More information

ENME 605 Advanced Control Systems, Fall 2015 Department of Mechanical Engineering

ENME 605 Advanced Control Systems, Fall 2015 Department of Mechanical Engineering ENME 605 Advanced Control Systems, Fall 2015 Department of Mechanical Engineering Lecture Details Instructor Course Objectives Tuesday and Thursday, 4:00 pm to 5:15 pm Information Technology and Engineering

More information

CS Machine Learning

CS Machine Learning CS 478 - Machine Learning Projects Data Representation Basic testing and evaluation schemes CS 478 Data and Testing 1 Programming Issues l Program in any platform you want l Realize that you will be doing

More information

Firms and Markets Saturdays Summer I 2014

Firms and Markets Saturdays Summer I 2014 PRELIMINARY DRAFT VERSION. SUBJECT TO CHANGE. Firms and Markets Saturdays Summer I 2014 Professor Thomas Pugel Office: Room 11-53 KMC E-mail: tpugel@stern.nyu.edu Tel: 212-998-0918 Fax: 212-995-4212 This

More information

Python Machine Learning

Python Machine Learning Python Machine Learning Unlock deeper insights into machine learning with this vital guide to cuttingedge predictive analytics Sebastian Raschka [ PUBLISHING 1 open source I community experience distilled

More information

ScienceDirect. A Framework for Clustering Cardiac Patient s Records Using Unsupervised Learning Techniques

ScienceDirect. A Framework for Clustering Cardiac Patient s Records Using Unsupervised Learning Techniques Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 98 (2016 ) 368 373 The 6th International Conference on Current and Future Trends of Information and Communication Technologies

More information

Mathematics Success Level E

Mathematics Success Level E T403 [OBJECTIVE] The student will generate two patterns given two rules and identify the relationship between corresponding terms, generate ordered pairs, and graph the ordered pairs on a coordinate plane.

More information

Objective: Add decimals using place value strategies, and relate those strategies to a written method.

Objective: Add decimals using place value strategies, and relate those strategies to a written method. NYS COMMON CORE MATHEMATICS CURRICULUM Lesson 9 5 1 Lesson 9 Objective: Add decimals using place value strategies, and relate those strategies to a written method. Suggested Lesson Structure Fluency Practice

More information

GDP Falls as MBA Rises?

GDP Falls as MBA Rises? Applied Mathematics, 2013, 4, 1455-1459 http://dx.doi.org/10.4236/am.2013.410196 Published Online October 2013 (http://www.scirp.org/journal/am) GDP Falls as MBA Rises? T. N. Cummins EconomicGPS, Aurora,

More information

The Federal Reserve Bank of New York

The Federal Reserve Bank of New York The Federal Reserve Bank of New York Teacher s Guide Federal Reserve Bank of New York Public Information Department 33 Liberty Street New York, NY 10045 Econ Explorers is a product of the Federal Reserve

More information

Minitab Tutorial (Version 17+)

Minitab Tutorial (Version 17+) Minitab Tutorial (Version 17+) Basic Commands and Data Entry Graphical Tools Descriptive Statistics Outline Minitab Basics Basic Commands, Data Entry, and Organization Minitab Project Files (*.MPJ) vs.

More information

With guidance, use images of a relevant/suggested. Research a

With guidance, use images of a relevant/suggested. Research a Learning Focus/Criteria Emerging Developing Evolving AO1 DEVELOP AND INVESTIGATE Develop ideas through investigations inforstudentd by contextual and other sources, demonstrating analytical and cultural

More information

Name Class Date. Graphing Proportional Relationships

Name Class Date. Graphing Proportional Relationships Name Class Date Practice 5-1 Graphing Proportional Relationships 5-1 Graphing Proportional Relationships 1. An electronics store has a frequent shopper program. The buyer earns 4 points for every movie

More information

Parent Information Welcome to the San Diego State University Community Reading Clinic

Parent Information Welcome to the San Diego State University Community Reading Clinic Parent Information Welcome to the San Diego State University Community Reading Clinic Who Are We? The San Diego State University Community Reading Clinic (CRC) is part of the SDSU Literacy Center in the

More information

STUDENT APPLICATION FORM 2016

STUDENT APPLICATION FORM 2016 Verizon Minority Male Maker Program Directed by Central State University STUDENT APPLICATION FORM 2016 Central State University, Wilberforce, OH 45384 June 19-July 1, 2016 Camp and once monthly sessions

More information

UNIT ONE Tools of Algebra

UNIT ONE Tools of Algebra UNIT ONE Tools of Algebra Subject: Algebra 1 Grade: 9 th 10 th Standards and Benchmarks: 1 a, b,e; 3 a, b; 4 a, b; Overview My Lessons are following the first unit from Prentice Hall Algebra 1 1. Students

More information

(Sub)Gradient Descent

(Sub)Gradient Descent (Sub)Gradient Descent CMSC 422 MARINE CARPUAT marine@cs.umd.edu Figures credit: Piyush Rai Logistics Midterm is on Thursday 3/24 during class time closed book/internet/etc, one page of notes. will include

More information

Course Content Concepts

Course Content Concepts CS 1371 SYLLABUS, Fall, 2017 Revised 8/6/17 Computing for Engineers Course Content Concepts The students will be expected to be familiar with the following concepts, either by writing code to solve problems,

More information

Accessing Higher Education in Developing Countries: panel data analysis from India, Peru and Vietnam

Accessing Higher Education in Developing Countries: panel data analysis from India, Peru and Vietnam Accessing Higher Education in Developing Countries: panel data analysis from India, Peru and Vietnam Alan Sanchez (GRADE) y Abhijeet Singh (UCL) 12 de Agosto, 2017 Introduction Higher education in developing

More information

ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY DOWNLOAD EBOOK : ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY PDF

ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY DOWNLOAD EBOOK : ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY PDF Read Online and Download Ebook ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY DOWNLOAD EBOOK : ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY PDF Click link bellow and free register to download

More information

Northern Kentucky University Department of Accounting, Finance and Business Law Financial Statement Analysis ACC 308

Northern Kentucky University Department of Accounting, Finance and Business Law Financial Statement Analysis ACC 308 Northern Kentucky University Department of Accounting, Finance and Business Law Financial Statement Analysis ACC 308 SEMESTER: Fall 2014 INSTRUCTOR: Dr. J.C. Thompson, e-mail duke@qx.net OFFICE HOURS:

More information

Academic Dean Evaluation by Faculty & Unclassified Professionals

Academic Dean Evaluation by Faculty & Unclassified Professionals Academic Dean Evaluation by Faculty & Unclassified Professionals Dean ****** College of ********* I. Administrative Effectiveness Please mark the box that best describes your opinion about the following

More information

Economics 201 Principles of Microeconomics Fall 2010 MWF 10:00 10:50am 160 Bryan Building

Economics 201 Principles of Microeconomics Fall 2010 MWF 10:00 10:50am 160 Bryan Building Economics 201 Principles of Microeconomics Fall 2010 MWF 10:00 10:50am 160 Bryan Building Professor: Dr. Michelle Sheran Office: 445 Bryan Building Phone: 256-1192 E-mail: mesheran@uncg.edu Office Hours:

More information

GUIDE TO THE CUNY ASSESSMENT TESTS

GUIDE TO THE CUNY ASSESSMENT TESTS GUIDE TO THE CUNY ASSESSMENT TESTS IN MATHEMATICS Rev. 117.016110 Contents Welcome... 1 Contact Information...1 Programs Administered by the Office of Testing and Evaluation... 1 CUNY Skills Assessment:...1

More information

THE LUCILLE HARRISON CHARITABLE TRUST SCHOLARSHIP APPLICATION. Name (Last) (First) (Middle) 3. County State Zip Telephone

THE LUCILLE HARRISON CHARITABLE TRUST SCHOLARSHIP APPLICATION. Name (Last) (First) (Middle) 3. County State Zip Telephone THE LUCILLE HARRISON CHARITABLE TRUST SCHOLARSHIP APPLICATION 1. Name (Last) (First) (Middle) 2. Street City 3. County State Zip Telephone 4. Are you a permanent resident of Harrison County? 5. M F SSN

More information

What is Teaching? JOHN A. LOTT Professor Emeritus in Pathology College of Medicine

What is Teaching? JOHN A. LOTT Professor Emeritus in Pathology College of Medicine What is Teaching? JOHN A. LOTT Professor Emeritus in Pathology College of Medicine What is teaching? As I started putting this essay together, I realized that most of my remarks were aimed at students

More information

Executive Guide to Simulation for Health

Executive Guide to Simulation for Health Executive Guide to Simulation for Health Simulation is used by Healthcare and Human Service organizations across the World to improve their systems of care and reduce costs. Simulation offers evidence

More information

TASK 2: INSTRUCTION COMMENTARY

TASK 2: INSTRUCTION COMMENTARY TASK 2: INSTRUCTION COMMENTARY Respond to the prompts below (no more than 7 single-spaced pages, including prompts) by typing your responses within the brackets following each prompt. Do not delete or

More information

Cognitive Thinking Style Sample Report

Cognitive Thinking Style Sample Report Cognitive Thinking Style Sample Report Goldisc Limited Authorised Agent for IML, PeopleKeys & StudentKeys DISC Profiles Online Reports Training Courses Consultations sales@goldisc.co.uk Telephone: +44

More information

12- A whirlwind tour of statistics

12- A whirlwind tour of statistics CyLab HT 05-436 / 05-836 / 08-534 / 08-734 / 19-534 / 19-734 Usable Privacy and Security TP :// C DU February 22, 2016 y & Secu rivac rity P le ratory bo La Lujo Bauer, Nicolas Christin, and Abby Marsh

More information

MATH 205: Mathematics for K 8 Teachers: Number and Operations Western Kentucky University Spring 2017

MATH 205: Mathematics for K 8 Teachers: Number and Operations Western Kentucky University Spring 2017 MATH 205: Mathematics for K 8 Teachers: Number and Operations Western Kentucky University Spring 2017 INSTRUCTOR: Julie Payne CLASS TIMES: Section 003 TR 11:10 12:30 EMAIL: julie.payne@wku.edu Section

More information

New Jersey Society of Radiologic Technologists Annual Meeting & Registry Review

New Jersey Society of Radiologic Technologists Annual Meeting & Registry Review New Jersey Society of Radiologic Technologists 2013 Annual Meeting & Registry Review Trump Taj Mahal Atlantic City, NJ March 6 th March 7th, 2013 With this packet you can Renew Your Membership and Register

More information

Courses in English. Application Development Technology. Artificial Intelligence. 2017/18 Spring Semester. Database access

Courses in English. Application Development Technology. Artificial Intelligence. 2017/18 Spring Semester. Database access The courses availability depends on the minimum number of registered students (5). If the course couldn t start, students can still complete it in the form of project work and regular consultations with

More information

Lecture 10: Reinforcement Learning

Lecture 10: Reinforcement Learning Lecture 1: Reinforcement Learning Cognitive Systems II - Machine Learning SS 25 Part III: Learning Programs and Strategies Q Learning, Dynamic Programming Lecture 1: Reinforcement Learning p. Motivation

More information

Maximizing Learning Through Course Alignment and Experience with Different Types of Knowledge

Maximizing Learning Through Course Alignment and Experience with Different Types of Knowledge Innov High Educ (2009) 34:93 103 DOI 10.1007/s10755-009-9095-2 Maximizing Learning Through Course Alignment and Experience with Different Types of Knowledge Phyllis Blumberg Published online: 3 February

More information

Quantitative analysis with statistics (and ponies) (Some slides, pony-based examples from Blase Ur)

Quantitative analysis with statistics (and ponies) (Some slides, pony-based examples from Blase Ur) Quantitative analysis with statistics (and ponies) (Some slides, pony-based examples from Blase Ur) 1 Interviews, diary studies Start stats Thursday: Ethics/IRB Tuesday: More stats New homework is available

More information

Unequal Opportunity in Environmental Education: Environmental Education Programs and Funding at Contra Costa Secondary Schools.

Unequal Opportunity in Environmental Education: Environmental Education Programs and Funding at Contra Costa Secondary Schools. Unequal Opportunity in Environmental Education: Environmental Education Programs and Funding at Contra Costa Secondary Schools Angela Freitas Abstract Unequal opportunity in education threatens to deprive

More information

LAKEWOOD HIGH SCHOOL LOCAL SCHOLARSHIP PORTFOLIO CLASS OF

LAKEWOOD HIGH SCHOOL LOCAL SCHOLARSHIP PORTFOLIO CLASS OF LAKEWOOD HIGH SCHOOL LOCAL SCHOLARSHIP PORTFOLIO CLASS OF Insert One Photo Applicant s Name First Middle Last Name of Applicant Birth date: Address: Phone: Age: Post High School Plans College or school

More information

Exploration. CS : Deep Reinforcement Learning Sergey Levine

Exploration. CS : Deep Reinforcement Learning Sergey Levine Exploration CS 294-112: Deep Reinforcement Learning Sergey Levine Class Notes 1. Homework 4 due on Wednesday 2. Project proposal feedback sent Today s Lecture 1. What is exploration? Why is it a problem?

More information

Applications of data mining algorithms to analysis of medical data

Applications of data mining algorithms to analysis of medical data Master Thesis Software Engineering Thesis no: MSE-2007:20 August 2007 Applications of data mining algorithms to analysis of medical data Dariusz Matyja School of Engineering Blekinge Institute of Technology

More information

INVESTING IN STUDENTS OUTSIDE-OF-THE CLASSROOM

INVESTING IN STUDENTS OUTSIDE-OF-THE CLASSROOM INVESTING IN STUDENTS OUTSIDE-OF-THE CLASSROOM Norwegian University of Science and Technology August 21, 2015 Professor J. Kim Vandiver MIT Dean for Undergraduate Research Director, Office of Experiential

More information

Speeding Up Reinforcement Learning with Behavior Transfer

Speeding Up Reinforcement Learning with Behavior Transfer Speeding Up Reinforcement Learning with Behavior Transfer Matthew E. Taylor and Peter Stone Department of Computer Sciences The University of Texas at Austin Austin, Texas 78712-1188 {mtaylor, pstone}@cs.utexas.edu

More information

K5 Math Practice. Free Pilot Proposal Jan -Jun Boost Confidence Increase Scores Get Ahead. Studypad, Inc.

K5 Math Practice. Free Pilot Proposal Jan -Jun Boost Confidence Increase Scores Get Ahead. Studypad, Inc. K5 Math Practice Boost Confidence Increase Scores Get Ahead Free Pilot Proposal Jan -Jun 2017 Studypad, Inc. 100 W El Camino Real, Ste 72 Mountain View, CA 94040 Table of Contents I. Splash Math Pilot

More information

How to make an A in Physics 101/102. Submitted by students who earned an A in PHYS 101 and PHYS 102.

How to make an A in Physics 101/102. Submitted by students who earned an A in PHYS 101 and PHYS 102. How to make an A in Physics 101/102. Submitted by students who earned an A in PHYS 101 and PHYS 102. PHYS 102 (Spring 2015) Don t just study the material the day before the test know the material well

More information

Laboratorio di Intelligenza Artificiale e Robotica

Laboratorio di Intelligenza Artificiale e Robotica Laboratorio di Intelligenza Artificiale e Robotica A.A. 2008-2009 Outline 2 Machine Learning Unsupervised Learning Supervised Learning Reinforcement Learning Genetic Algorithms Genetics-Based Machine Learning

More information

TD(λ) and Q-Learning Based Ludo Players

TD(λ) and Q-Learning Based Ludo Players TD(λ) and Q-Learning Based Ludo Players Majed Alhajry, Faisal Alvi, Member, IEEE and Moataz Ahmed Abstract Reinforcement learning is a popular machine learning technique whose inherent self-learning ability

More information

BARUCH RANKINGS: *Named Standout Institution by the

BARUCH RANKINGS: *Named Standout Institution by the THE BARUCH VALUE BARUCH RANKINGS: *#1 in CollegeNET s annual Social Mobility Index (out of over 900 colleges) for a second year in a row. *Named Standout Institution by the Baruch Background Baruch College

More information

Comparison of EM and Two-Step Cluster Method for Mixed Data: An Application

Comparison of EM and Two-Step Cluster Method for Mixed Data: An Application International Journal of Medical Science and Clinical Inventions 4(3): 2768-2773, 2017 DOI:10.18535/ijmsci/ v4i3.8 ICV 2015: 52.82 e-issn: 2348-991X, p-issn: 2454-9576 2017, IJMSCI Research Article Comparison

More information

CIS 121 INTRODUCTION TO COMPUTER INFORMATION SYSTEMS - SYLLABUS

CIS 121 INTRODUCTION TO COMPUTER INFORMATION SYSTEMS - SYLLABUS CIS 121 INTRODUCTION TO COMPUTER INFORMATION SYSTEMS - SYLLABUS Section: 7591, 7592 Instructor: Beth Roberts Class Time: Hybrid Classroom: CTR-270, AAH-234 Credits: 5 cr. Email: Canvas messaging (preferred)

More information

Ricopili: Postimputation Module. WCPG Education Day Stephan Ripke / Raymond Walters Toronto, October 2015

Ricopili: Postimputation Module. WCPG Education Day Stephan Ripke / Raymond Walters Toronto, October 2015 Ricopili: Postimputation Module WCPG Education Day Stephan Ripke / Raymond Walters Toronto, October 2015 Ricopili Overview Ricopili Overview postimputation, 12 steps 1) Association analysis 2) Meta analysis

More information

Introduction to Causal Inference. Problem Set 1. Required Problems

Introduction to Causal Inference. Problem Set 1. Required Problems Introduction to Causal Inference Problem Set 1 Professor: Teppei Yamamoto Due Friday, July 15 (at beginning of class) Only the required problems are due on the above date. The optional problems will not

More information

Office Hours: Mon & Fri 10:00-12:00. Course Description

Office Hours: Mon & Fri 10:00-12:00. Course Description 1 State University of New York at Buffalo INTRODUCTION TO STATISTICS PSC 408 4 credits (3 credits lecture, 1 credit lab) Fall 2016 M/W/F 1:00-1:50 O Brian 112 Lecture Dr. Michelle Benson mbenson2@buffalo.edu

More information

Livermore Valley Joint Unified School District. B or better in Algebra I, or consent of instructor

Livermore Valley Joint Unified School District. B or better in Algebra I, or consent of instructor Livermore Valley Joint Unified School District DRAFT Course Title: AP Macroeconomics Grade Level(s) 11-12 Length of Course: Credit: Prerequisite: One semester or equivalent term 5 units B or better in

More information

Trends in College Pricing

Trends in College Pricing Trends in College Pricing 2009 T R E N D S I N H I G H E R E D U C A T I O N S E R I E S T R E N D S I N H I G H E R E D U C A T I O N S E R I E S Highlights Published Tuition and Fee and Room and Board

More information

School Physical Activity Policy Assessment (S-PAPA)

School Physical Activity Policy Assessment (S-PAPA) School Physical Activity Policy Assessment (S-PAPA) Monica A. F. Lounsbery, Ph.D. 1 Thomas L. McKenzie, Ph.D. 2 James R. Morrow, Ph.D. 3 Kathryn A. Holt, B.S. 1 1 University of Nevada, Las Vegas, Las Vegas,

More information

Perioperative Care of Congenital Heart Diseases

Perioperative Care of Congenital Heart Diseases CALL FOR APPLICATIONS DR 617/2017 II LEVEL MASTER Perioperative Care of Congenital Heart Diseases Academic Year 2017/2018 2018/2019 In collaboration with Fondazione G. Monasterio Regione Toscana CNR Article

More information

CHAPTER 4: REIMBURSEMENT STRATEGIES 24

CHAPTER 4: REIMBURSEMENT STRATEGIES 24 CHAPTER 4: REIMBURSEMENT STRATEGIES 24 INTRODUCTION Once state level policymakers have decided to implement and pay for CSR, one issue they face is simply how to calculate the reimbursements to districts

More information

Feedback Form Results n=106 6/23/10 Emotionally Focused Therapy: Love as an Attachment Bond Presented By: Sue Johnson, Ed.D.

Feedback Form Results n=106 6/23/10 Emotionally Focused Therapy: Love as an Attachment Bond Presented By: Sue Johnson, Ed.D. Feedback Form Results n=106 6/23/10 Emotionally Focused Therapy: Love as an Attachment Bond Presented By: Sue Johnson, Ed.D. (J0607) Dear Participant: Thank you for completing this program. We value your

More information

Top Ten Persuasive Strategies Used on the Web - Cathy SooHoo, 5/17/01

Top Ten Persuasive Strategies Used on the Web - Cathy SooHoo, 5/17/01 Top Ten Persuasive Strategies Used on the Web - Cathy SooHoo, 5/17/01 Introduction Although there is nothing new about the human use of persuasive strategies, web technologies usher forth a new level of

More information

arxiv: v2 [cs.cv] 30 Mar 2017

arxiv: v2 [cs.cv] 30 Mar 2017 Domain Adaptation for Visual Applications: A Comprehensive Survey Gabriela Csurka arxiv:1702.05374v2 [cs.cv] 30 Mar 2017 Abstract The aim of this paper 1 is to give an overview of domain adaptation and

More information

Financial aid: Degree-seeking undergraduates, FY15-16 CU-Boulder Office of Data Analytics, Institutional Research March 2017

Financial aid: Degree-seeking undergraduates, FY15-16 CU-Boulder Office of Data Analytics, Institutional Research March 2017 CU-Boulder financial aid, degree-seeking undergraduates, FY15-16 Page 1 Financial aid: Degree-seeking undergraduates, FY15-16 CU-Boulder Office of Data Analytics, Institutional Research March 2017 Contents

More information

Local Activism: Identifying Community Activists (2 hours 30 minutes)

Local Activism: Identifying Community Activists (2 hours 30 minutes) Local Activism: Identifying Community Activists (2 hours 30 minutes) Local Activism Series Staff Skill Building Library Raising Voices This module is part of a Staff Skill Building Library developed by

More information

Measures of the Location of the Data

Measures of the Location of the Data OpenStax-CNX module m46930 1 Measures of the Location of the Data OpenStax College This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 The common measures

More information

Listening to your members: The member satisfaction survey. Presenter: Mary Beth Watt. Outline

Listening to your members: The member satisfaction survey. Presenter: Mary Beth Watt. Outline Listening to your members: The satisfaction survey Listening to your members: The member satisfaction survey Presenter: Mary Beth Watt 1 Outline Introductions Members as customers Member satisfaction survey

More information

Statistical Analysis of Climate Change, Renewable Energies, and Sustainability An Independent Investigation for Introduction to Statistics

Statistical Analysis of Climate Change, Renewable Energies, and Sustainability An Independent Investigation for Introduction to Statistics 5/22/2012 Statistical Analysis of Climate Change, Renewable Energies, and Sustainability An Independent Investigation for Introduction to Statistics College of Menominee Nation & University of Wisconsin

More information

What to Do When Conflict Happens

What to Do When Conflict Happens PREVIEW GUIDE What to Do When Conflict Happens Table of Contents: Sample Pages from Leader s Guide and Workbook..pgs. 2-15 Program Information and Pricing.. pgs. 16-17 BACKGROUND INTRODUCTION Workplace

More information

Manipulative Mathematics Using Manipulatives to Promote Understanding of Math Concepts

Manipulative Mathematics Using Manipulatives to Promote Understanding of Math Concepts Using Manipulatives to Promote Understanding of Math Concepts Multiples and Primes Multiples Prime Numbers Manipulatives used: Hundreds Charts Manipulative Mathematics 1 www.foundationsofalgebra.com Multiples

More information

Community Power Simulation

Community Power Simulation Activity Community Power Simulation Time: 30 40 min Purpose: To practice community decision-making through a simulation. Skills: Communication, Conflict resolution, Cooperation, Inquiring, Patience, Paying

More information

Business Analytics and Information Tech COURSE NUMBER: 33:136:494 COURSE TITLE: Data Mining and Business Intelligence

Business Analytics and Information Tech COURSE NUMBER: 33:136:494 COURSE TITLE: Data Mining and Business Intelligence Business Analytics and Information Tech COURSE NUMBER: 33:136:494 COURSE TITLE: Data Mining and Business Intelligence COURSE DESCRIPTION This course presents computing tools and concepts for all stages

More information

Higher Education Six-Year Plans

Higher Education Six-Year Plans Higher Education Six-Year Plans 2018-2024 House Appropriations Committee Retreat November 15, 2017 Tony Maggio, Staff Background The Higher Education Opportunity Act of 2011 included the requirement for

More information

Machine Learning from Garden Path Sentences: The Application of Computational Linguistics

Machine Learning from Garden Path Sentences: The Application of Computational Linguistics Machine Learning from Garden Path Sentences: The Application of Computational Linguistics http://dx.doi.org/10.3991/ijet.v9i6.4109 J.L. Du 1, P.F. Yu 1 and M.L. Li 2 1 Guangdong University of Foreign Studies,

More information

Lecture 1: Machine Learning Basics

Lecture 1: Machine Learning Basics 1/69 Lecture 1: Machine Learning Basics Ali Harakeh University of Waterloo WAVE Lab ali.harakeh@uwaterloo.ca May 1, 2017 2/69 Overview 1 Learning Algorithms 2 Capacity, Overfitting, and Underfitting 3

More information

ME 443/643 Design Techniques in Mechanical Engineering. Lecture 1: Introduction

ME 443/643 Design Techniques in Mechanical Engineering. Lecture 1: Introduction ME 443/643 Design Techniques in Mechanical Engineering Lecture 1: Introduction Instructor: Dr. Jagadeep Thota Instructor Introduction Born in Bangalore, India. B.S. in ME @ Bangalore University, India.

More information

STAT 220 Midterm Exam, Friday, Feb. 24

STAT 220 Midterm Exam, Friday, Feb. 24 STAT 220 Midterm Exam, Friday, Feb. 24 Name Please show all of your work on the exam itself. If you need more space, use the back of the page. Remember that partial credit will be awarded when appropriate.

More information

Syllabus for CHEM 4660 Introduction to Computational Chemistry Spring 2010

Syllabus for CHEM 4660 Introduction to Computational Chemistry Spring 2010 Instructor: Dr. Angela Syllabus for CHEM 4660 Introduction to Computational Chemistry Office Hours: Mondays, 1:00 p.m. 3:00 p.m.; 5:00 6:00 p.m. Office: Chemistry 205C Office Phone: (940) 565-4296 E-mail:

More information

Course Outline. Course Grading. Where to go for help. Academic Integrity. EE-589 Introduction to Neural Networks NN 1 EE

Course Outline. Course Grading. Where to go for help. Academic Integrity. EE-589 Introduction to Neural Networks NN 1 EE EE-589 Introduction to Neural Assistant Prof. Dr. Turgay IBRIKCI Room # 305 (322) 338 6868 / 139 Wensdays 9:00-12:00 Course Outline The course is divided in two parts: theory and practice. 1. Theory covers

More information

Issues in the Mining of Heart Failure Datasets

Issues in the Mining of Heart Failure Datasets International Journal of Automation and Computing 11(2), April 2014, 162-179 DOI: 10.1007/s11633-014-0778-5 Issues in the Mining of Heart Failure Datasets Nongnuch Poolsawad 1 Lisa Moore 1 Chandrasekhar

More information

Jon N. Kerr, PhD, CPA August 2017

Jon N. Kerr, PhD, CPA August 2017 JON NATHAN KERR, PhD, CPA ASSISTANT PROFESSOR THE OHIO STATE UNIVERSITY FISHER COLLEGE OF BUSINESS 2100 NEIL AVENUE 400 FISHER HALL COLUMBUS, OH 43210 Email: kerr.360@osu.edu Office: Fax: EDUCATION Columbia

More information

Historical maintenance relevant information roadmap for a self-learning maintenance prediction procedural approach

Historical maintenance relevant information roadmap for a self-learning maintenance prediction procedural approach IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Historical maintenance relevant information roadmap for a self-learning maintenance prediction procedural approach To cite this

More information

Team Dispersal. Some shaping ideas

Team Dispersal. Some shaping ideas Team Dispersal Some shaping ideas The storyline is how distributed teams can be a liability or an asset or anything in between. It isn t simply a case of neutralizing the down side Nick Clare, January

More information

Data Structures and Algorithms

Data Structures and Algorithms CS 3114 Data Structures and Algorithms 1 Trinity College Library Univ. of Dublin Instructor and Course Information 2 William D McQuain Email: Office: Office Hours: wmcquain@cs.vt.edu 634 McBryde Hall see

More information

GCSE Mathematics B (Linear) Mark Scheme for November Component J567/04: Mathematics Paper 4 (Higher) General Certificate of Secondary Education

GCSE Mathematics B (Linear) Mark Scheme for November Component J567/04: Mathematics Paper 4 (Higher) General Certificate of Secondary Education GCSE Mathematics B (Linear) Component J567/04: Mathematics Paper 4 (Higher) General Certificate of Secondary Education Mark Scheme for November 2014 Oxford Cambridge and RSA Examinations OCR (Oxford Cambridge

More information

Soham Baksi. Professor, Department of Economics, University of Winnipeg, July 2017 present

Soham Baksi. Professor, Department of Economics, University of Winnipeg, July 2017 present Soham Baksi Department of Economics University of Winnipeg Tel: 1-204-2582945 515 Portage Avenue Email: s.baksi@uwinnipeg.ca Winnipeg, Canada, R3B 2E9 https://sites.google.com/site/sohambaksi ACADEMIC

More information

Office of Planning and Budgets. Provost Market for Fiscal Year Resource Guide

Office of Planning and Budgets. Provost Market for Fiscal Year Resource Guide Office of Planning and Budgets Provost Market for Fiscal Year 2017-18 Resource Guide This resource guide will show users how to operate the Cognos Planning application used to collect Provost Market raise

More information

Continual Curiosity-Driven Skill Acquisition from High-Dimensional Video Inputs for Humanoid Robots

Continual Curiosity-Driven Skill Acquisition from High-Dimensional Video Inputs for Humanoid Robots Continual Curiosity-Driven Skill Acquisition from High-Dimensional Video Inputs for Humanoid Robots Varun Raj Kompella, Marijn Stollenga, Matthew Luciw, Juergen Schmidhuber The Swiss AI Lab IDSIA, USI

More information

Instructor: Mario D. Garrett, Ph.D. Phone: Office: Hepner Hall (HH) 100

Instructor: Mario D. Garrett, Ph.D.   Phone: Office: Hepner Hall (HH) 100 San Diego State University School of Social Work 610 COMPUTER APPLICATIONS FOR SOCIAL WORK PRACTICE Statistical Package for the Social Sciences Office: Hepner Hall (HH) 100 Instructor: Mario D. Garrett,

More information

Physics 270: Experimental Physics

Physics 270: Experimental Physics 2017 edition Lab Manual Physics 270 3 Physics 270: Experimental Physics Lecture: Lab: Instructor: Office: Email: Tuesdays, 2 3:50 PM Thursdays, 2 4:50 PM Dr. Uttam Manna 313C Moulton Hall umanna@ilstu.edu

More information

Professional Development and Incentives for Teacher Performance in Schools in Mexico. Gladys Lopez-Acevedo (LCSPP)*

Professional Development and Incentives for Teacher Performance in Schools in Mexico. Gladys Lopez-Acevedo (LCSPP)* Public Disclosure Authorized Professional Development and Incentives for Teacher Performance in Schools in Mexico Gladys Lopez-Acevedo (LCSPP)* Gacevedo@worldbank.org Public Disclosure Authorized Latin

More information

Demystifying The Teaching Portfolio

Demystifying The Teaching Portfolio Demystifying The Teaching Portfolio Faculty Development Workshop January 24, 2012 Helen Emery, MD Andrew Luks, MD Mark Whipple MD On behalf of the 2006-07 Teaching Scholars Cohort Helen Emery, MD Andrew

More information

A Study Guide Written By Garrett Christopher Edited by Joyce Friedland and Rikki Kessler

A Study Guide Written By Garrett Christopher Edited by Joyce Friedland and Rikki Kessler Novel Ties Judy Moody Saves the World! Megan McDonald A Study Guide Written By Garrett Christopher Edited by Joyce Friedland and Rikki Kessler P.O. Box 326 Cranbury New Jersey 08512 TABLE OF CONTENTS Synopsis.....................................

More information

medicaid and the How will the Medicaid Expansion for Adults Impact Eligibility and Coverage? Key Findings in Brief

medicaid and the How will the Medicaid Expansion for Adults Impact Eligibility and Coverage? Key Findings in Brief on medicaid and the uninsured July 2012 How will the Medicaid Expansion for Impact Eligibility and Coverage? Key Findings in Brief Effective January 2014, the ACA establishes a new minimum Medicaid eligibility

More information

Common Core State Standards

Common Core State Standards Common Core State Standards Common Core State Standards 7.NS.3 Solve real-world and mathematical problems involving the four operations with rational numbers. Mathematical Practices 1, 3, and 4 are aspects

More information

Bridging Lexical Gaps between Queries and Questions on Large Online Q&A Collections with Compact Translation Models

Bridging Lexical Gaps between Queries and Questions on Large Online Q&A Collections with Compact Translation Models Bridging Lexical Gaps between Queries and Questions on Large Online Q&A Collections with Compact Translation Models Jung-Tae Lee and Sang-Bum Kim and Young-In Song and Hae-Chang Rim Dept. of Computer &

More information

An Introduction to School Finance in Texas

An Introduction to School Finance in Texas An Introduction to School Finance in Texas May 12, 2010 Sheryl Pace TTARA Research Foundation space@ttara.org (512) 472-8838 Texas Public Education System 1,300 school districts (#1 in the nation) 1,025

More information

CS 100: Principles of Computing

CS 100: Principles of Computing CS 100: Principles of Computing Kevin Molloy August 29, 2017 1 Basic Course Information 1.1 Prerequisites: None 1.2 General Education Fulfills Mason Core requirement in Information Technology (ALL). 1.3

More information

LOUISIANA HIGH SCHOOL RALLY ASSOCIATION

LOUISIANA HIGH SCHOOL RALLY ASSOCIATION LOUISIANA HIGH SCHOOL RALLY ASSOCIATION Literary Events 2014-15 General Information There are 44 literary events in which District and State Rally qualifiers compete. District and State Rally tests are

More information

St Philip Howard Catholic School

St Philip Howard Catholic School School report St Philip Howard Catholic School St Mary's Road, Glossop, SK13 8DR Inspection dates 4 November 1 December 2014 Overall effectiveness Previous inspection: Requires improvement 3 This inspection:

More information

VIRTUAL LEARNING. Alabama Connecting Classrooms, Educators, & Students Statewide. for FACILITATORS

VIRTUAL LEARNING. Alabama Connecting Classrooms, Educators, & Students Statewide. for FACILITATORS ACCESS VIRTUAL LEARNING Alabama Connecting Classrooms, Educators, & Students Statewide POLICY MANUAL for FACILITATORS alabama department of education michael Sentance, State Superintendent of education

More information

Redirected Inbound Call Sampling An Example of Fit for Purpose Non-probability Sample Design

Redirected Inbound Call Sampling An Example of Fit for Purpose Non-probability Sample Design Redirected Inbound Call Sampling An Example of Fit for Purpose Non-probability Sample Design Burton Levine Karol Krotki NISS/WSS Workshop on Inference from Nonprobability Samples September 25, 2017 RTI

More information

Virtually Anywhere Episodes 1 and 2. Teacher s Notes

Virtually Anywhere Episodes 1 and 2. Teacher s Notes Virtually Anywhere Episodes 1 and 2 Geeta and Paul are final year Archaeology students who don t get along very well. They are working together on their final piece of coursework, and while arguing over

More information