Lecture 1. Introduction. Probability Theory
|
|
- Clifford Emery Lyons
- 1 years ago
- Views:
Transcription
1 Lecture 1. Introduction. Probability Theory COMP90051 Machine Learning Sem Lecturer: Trevor Cohn Adapted from slides provided by Ben Rubinstein
2 Why Learn Learning? 2
3 Motivation We are drowning in information, but we are starved for knowledge - John Naisbitt, Megatrends Data = raw information Knowledge = patterns or models behind the data 3
4 Solution: Machine Learning Hypothesis: pre-existing data repositories contain a lot of potentially valuable knowledge Mission of learning: find it Definition of learning: (semi-)automatic extraction of valid, novel, useful and comprehensible knowledge in the form of rules, regularities, patterns, constraints or models from arbitrary sets of data 4
5 Applications of ML are Deep and Prevalent Online ad selection and placement Risk management in finance, insurance, security High-frequency trading Medical diagnosis Mining and natural resources Malware analysis Drug discovery Search engines 5
6 Draws on Many Disciplines Artificial Intelligence Statistics Continuous optimisation Databases Information Retrieval Communications/information theory Signal Processing Computer Science Theory Philosophy Psychology and neurobiology 6
7 Many companies across all industries hire ML experts: Job$ Data Scientist Analytics Expert Business Analyst Statistician Software Engineer Researcher 7
8 About this Subject (refer to subject outline on github for more information linked from LMS) 8
9 Vital Statistics Lecturers: Weeks 1; 9-12 Weeks 2-8 Tutors: Contact: Office Hours Website: Trevor Cohn (DMD8., A/Prof & Future Fellow, Computing & Information Systems Statistical Machine Learning, Natural Language Processing Andrey Kan Research Fellow, Walter and Eliza Hall Institute ML, Computational immunology, Medical image analysis Yasmeen George Nitika Mathur Yuan Li Weekly you should attend 2x Lectures, 1x Workshop Thursdays 1-2pm, 7.03 DMD Building 9
10 About Me (Trevor) PhD 2007 UMelbourne 10 years abroad UK * Edinburgh University, in Language group * Sheffield University, in Language & Machine learning groups Expertise: Basic research in machine learning; Bayesian inference; graphical models; deep learning; applications to structured problems in text (translation, sequence tagging, structured parsing, modelling time series) 10
11 Subject Content The subject will cover topics from Foundations of statistical learning, linear models, non-linear bases, kernel approaches, neural networks, Bayesian learning, probabilistic graphical models (Bayes Nets, Markov Random Fields), cluster analysis, dimensionality reduction, regularisation and model selection We will gain hands-on experience with all of this via a range of toolkits, workshop pracs, and projects 11
12 Subject Objectives Develop an appreciation for the role of statistical machine learning, both in terms of foundations and applications Gain an understanding of a representative selection of ML techniques Be able to design, implement and evaluate ML systems Become a discerning ML consumer 12
13 Textbooks Primarily references to * Bishop (2007) Pattern Recognition and Machine Learning Other good general references: * Murphy (2012) Machine Learning: A Probabilistic Perspective [read free ebook using ebrary at * Hastie, Tibshirani, Friedman (2001) The Elements of Statistical Learning: Data Mining, Inference and Prediction [free at 13
14 Textbooks References for PGM component * Koller, Friedman (2009) Probabilistic Graphical Models: Principles and Techniques 14
15 Assumed Knowledge (Week 2 Workshop revises COMP90049) Programming * Required: proficiency at programming, ideally in python * Ideal: exposure to scientific libraries numpy, scipy, matplotlib etc. (similar in functionality to matlab & aspects of R.) Maths * Familiarity with formal notation Pr x = % Pr (x, y) y * Familiarity with probability (Bayes rule, marginalisation) * Exposure to optimisation (gradient descent) ML: decision trees, naïve Bayes, knn, kmeans 15
16 Assessment Assessment components * Two projects one released early (w3-4), one late (w7-8); will have ~3 weeks to complete First project fairly structured (20%) Second project includes competition component (30%) * Final Exam Breakdown * 50% Exam * 50% Project work 50% Hurdle applies to both exam and ongoing assessment 16
17 Machine Learning Basics 17
18 Terminology Input to a machine learning system can consist of * Instance: measurements about individual entities/objects a loan application * Attribute (aka Feature, explanatory var.): component of the instances the applicant s salary, number of dependents, etc. * Label (aka Response, dependent var.): an outcome that is categorical, numeric, etc. forfeit vs. paid off * Examples: instance coupled with label <(100k, 3), forfeit > * Models: discovered relationship between attributes and/or label 18
19 Supervised vs Unsupervised Learning Data Model used for Supervised learning Unsupervised learning Labelled Unlabelled Predict labels on new instances Cluster related instances; Project to fewer dimensions; Understand attribute relationships 19
20 Architecture of a Supervised Learner Train data Examples Learner Test data Instances Labels Model Labels Evaluation 20
21 Evaluation (Supervised Learners) How you measure quality depends on your problem! Typical process * Pick an evaluation metric comparing label vs prediction * Procure an independent, labelled test set * Average the evaluation metric over the test set Example evaluation metrics * Accuracy, Contingency table, Precision-Recall, ROC curves When data poor, cross-validate 21
22 Data is noisy (almost always) ML mark Training data* Example: * given mark for Knowledge Technologies (KT) * predict mark for Machine Learning (ML) KT mark * synthetic data :) 22
23 Types of models y- = f x P y x x P(x, y) KT mark was 95, ML mark is predicted to be 95 KT mark was 95, ML mark is likely to be in (92, 97) probability of having (KT = x, ML = y) 23
24 Probability Theory Brief refresher 24
25 Basics of Probability Theory A probability space: * Set W of possible outcomes * Set F of events (subsets of outcomes) * Probability measure P: F à R Example: a die roll * {1, 2, 3, 4, 5, 6} * { j, {1},, {6}, {1,2},, {5,6},, {1,2,3,4,5,6} } * P(j)=0, P({1})=1/6, P({1,2})=1/3, 25
26 Axioms of Probability 1. P(f) 0 for every event f in F 2. P 8 f = 8 P(f) for all collections* of pairwise disjoint events 3. P Ω = 1 * We won t delve further into advanced probability theory, which starts with measure theory. But to be precise, additivity is over collections of countably-many events. 26
27 Random Variables (r.v. s) A random variable X is a numeric function of outcome X(ω) R P X A denotes the probability of the outcome being such that X falls in the range A Example: X winnings on $5 bet on even die roll * X maps 1,3,5 to -5 X maps 2,4,6 to 5 * P(X=5) = P(X=-5) = ½ 27
28 Discrete vs. Continuous Distributions Discrete distributions * Govern r.v. taking discrete values * Described by probability mass function p(x) which is P(X=x) * P X x = EFGH p(a) * Examples: Bernoulli, Binomial, Multinomial, Poisson D Continuous distributions * Govern real-valued r.v. * Cannot talk about PMF but rather probability density function p(x) D * P X x = p a da GH * Examples: Uniform, Normal, Laplace, Gamma, Beta, Dirichlet 28
29 Expectation Expectation E[X] is the r.v. X s average value * Discrete: E X = x P(X = x) D * Continuous: E X = x p x dx D Properties * Linear: E ax + b = ae X + b E X + Y = E X + E Y * Monotone: X Y E X E Y Variance: Var X = E[ X E X T ] p(x) x 29
30 Independence and Conditioning X, Y are independent if * P X A, Y B = P X A P(Y B) * Similarly for densities: p W,X x, y = p W (x)p X (y) * Intuitively: knowing value of Y reveals nothing about X * Algebraically: the joint on X,Y factorises! Conditional probability * P A B = Y(Z \) Y(\) * Similarly for densities p y x = ](D,^) ](D) * Intuitively: probability event A will occur given we know event B has occurred * X,Y independent equiv to P Y = y X = x = P(Y = y) 30
31 Inverting Conditioning: Bayes Theorem In terms of events A, B * P A B = P A B P B = P B A P A * P A B = Y B A Y(Z) Y(\) Simple rule that lets us swap conditioning order Bayes Bayesian statistical inference makes heavy use * Marginals: probabilities of individual variables * Marginalisation: summing away all but r.v. s of interest 31
32 Summary Why study machine learning? Machine learning basics Review of probability theory 32
Machine Learning for Computer Vision
Prof. Daniel Cremers Machine Learning for Computer PD Dr. Rudolph Triebel Lecturers PD Dr. Rudolph Triebel rudolph.triebel@in.tum.de Room number 02.09.058 (Fridays) Main lecture MSc. Ioannis John Chiotellis
36-350: Data Mining. Fall Lectures: Monday, Wednesday and Friday, 10:30 11:20, Porter Hall 226B
36-350: Data Mining Fall 2009 Instructor: Cosma Shalizi, Statistics Dept., Baker Hall 229C, cshalizi@stat.cmu.edu Teaching Assistant: Joseph Richards, jwrichar@stat.cmu.edu Lectures: Monday, Wednesday
Statistical Learning- Classification STAT 441/ 841, CM 764
Statistical Learning- Classification STAT 441/ 841, CM 764 Ali Ghodsi Department of Statistics and Actuarial Science University of Waterloo aghodsib@uwaterloo.ca Two Paradigms Classical Statistics Infer
M. R. Ahmadzadeh Isfahan University of Technology. M. R. Ahmadzadeh Isfahan University of Technology
1 2 M. R. Ahmadzadeh Isfahan University of Technology Ahmadzadeh@cc.iut.ac.ir M. R. Ahmadzadeh Isfahan University of Technology Textbooks 3 Introduction to Machine Learning - Ethem Alpaydin Pattern Recognition
Machine Learning. Introduction. Hamid Beigy. Sharif University of Technology. Fall 1395
Machine Learning Introduction Hamid Beigy Sharif University of Technology Fall 1395 Hamid Beigy (Sharif University of Technology) Machine Learning Fall 1395 1 / 15 Table of contents 1 What is machine learning?
CS545 Machine Learning
Machine learning and related fields CS545 Machine Learning Course Introduction Machine learning: the construction and study of systems that learn from data. Pattern recognition: the same field, different
Session 1: Gesture Recognition & Machine Learning Fundamentals
IAP Gesture Recognition Workshop Session 1: Gesture Recognition & Machine Learning Fundamentals Nicholas Gillian Responsive Environments, MIT Media Lab Tuesday 8th January, 2013 My Research My Research
10701: Intro to Machine Learning. Instructors: Pradeep Ravikumar, Manuela Veloso, Teaching Assistants:
10701: Intro to Machine Instructors: Pradeep Ravikumar, pradeepr@cs.cmu.edu Manuela Veloso, mmv@cs.cmu.edu Teaching Assistants: Shaojie Bai shaojieb@andrew.cmu.edu Adarsh Prasad adarshp@andrew.cmu.edu
10-702: Statistical Machine Learning
10-702: Statistical Machine Learning Syllabus, Spring 2010 http://www.cs.cmu.edu/~10702 Statistical Machine Learning is a second graduate level course in machine learning, assuming students have taken
Stats Camp for Economists and Econometricians
Stats Camp for Economists and Econometricians Rice University Summer 2017 Logistics Logistics Instructor: Mehreen Gul, mehreen.gul@rice.edu Schedule: May 31 st July 30th Location: Canvas Platform, https://canvas.rice.edu
CPSC 340: Machine Learning and Data Mining. Course Review/Preview Fall 2015
CPSC 340: Machine Learning and Data Mining Course Review/Preview Fall 2015 Admin Assignment 6 due now. We will have office hours as usual next week. Final exam details: December 15: 8:30-11 (WESB 100).
Machine Learning and Applications in Finance
Machine Learning and Applications in Finance Christian Hesse 1,2,* 1 Autobahn Equity Europe, Global Markets Equity, Deutsche Bank AG, London, UK christian-a.hesse@db.com 2 Department of Computer Science,
Big Data Analytics Clustering and Classification
E6893 Big Data Analytics Lecture 4: Big Data Analytics Clustering and Classification Ching-Yung Lin, Ph.D. Adjunct Professor, Dept. of Electrical Engineering and Computer Science September 28th, 2017 1
W4240 Data Mining. Frank Wood. September 6, 2010
W4240 Data Mining Frank Wood September 6, 2010 Introduction Data mining is the search for patterns in large collections of data Learning models Applying models to large quantities of data Pattern recognition
Programming Social Robots for Human Interaction. Lecture 4: Machine Learning and Pattern Recognition
Programming Social Robots for Human Interaction Lecture 4: Machine Learning and Pattern Recognition Zheng-Hua Tan Dept. of Electronic Systems, Aalborg Univ., Denmark zt@es.aau.dk, http://kom.aau.dk/~zt
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
Machine Learning Lecture 1: Introduction
Welcome to CSCE 478/878! Please check off your name on the roster, or write your name if you're not listed Indicate if you wish to register or sit in Policy on sit-ins: You may sit in on the course without
learn from the accelerometer data? A close look into privacy Member: Devu Manikantan Shila
What can we learn from the accelerometer data? A close look into privacy Team Member: Devu Manikantan Shila Abstract: A handful of research efforts nowadays focus on gathering and analyzing the data from
Pattern Classification and Clustering Spring 2006
Pattern Classification and Clustering Time: Spring 2006 Room: Instructor: Yingen Xiong Office: 621 McBryde Office Hours: Phone: 231-4212 Email: yxiong@cs.vt.edu URL: http://www.cs.vt.edu/~yxiong/pcc/ Detailed
A Review on Classification Techniques in Machine Learning
A Review on Classification Techniques in Machine Learning R. Vijaya Kumar Reddy 1, Dr. U. Ravi Babu 2 1 Research Scholar, Dept. of. CSE, Acharya Nagarjuna University, Guntur, (India) 2 Principal, DRK College
SB2b Statistical Machine Learning Hilary Term 2017
SB2b Statistical Machine Learning Hilary Term 2017 Mihaela van der Schaar and Seth Flaxman Guest lecturer: Yee Whye Teh Department of Statistics Oxford Slides and other materials available at: http://www.oxford-man.ox.ac.uk/~mvanderschaar/home_
Unsupervised Learning: Clustering
Unsupervised Learning: Clustering Vibhav Gogate The University of Texas at Dallas Slides adapted from Carlos Guestrin, Dan Klein & Luke Zettlemoyer Machine Learning Supervised Learning Unsupervised Learning
Artificial Intelligence with DNN
Artificial Intelligence with DNN Jean-Sylvain Boige Aricie jsboige@aricie.fr Please support our valuable sponsors Summary Introduction to AI What is AI? Agent systems DNN environment A Tour of AI in DNN
About This Specialization
About This Specialization The 5 courses in this University of Michigan specialization introduce learners to data science through the python programming language. This skills-based specialization is intended
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
Probability An Introduction with Applications
Probability An Introduction with Applications 0.5 0.2 0 0 2 0 0 5 0.05 0.1 0 5 10 15 0 40 60 80 Gordon B. Hazen Preface to the instructor This text is meant as an introduction to calculus-based probability,
Lecture 1. Introduction Bastian Leibe Visual Computing Institute RWTH Aachen University
Advanced Machine Learning Lecture 1 Introduction 20.10.2015 Bastian Leibe Visual Computing Institute RWTH Aachen University http://www.vision.rwth-aachen.de/ leibe@vision.rwth-aachen.de Organization Lecturer
Part IA: Structure of Papers 1 and 2 in 2018
Part IA: Structure of Papers 1 and 2 in 2018 Paper 1 Paper 2 1. Foundations of Computer Science 2. Foundations of Computer Science 3. Object-Oriented Programming 4. Object-Oriented Programming 5. Numerical
INTRODUCTION TO DATA SCIENCE
DATA11001 INTRODUCTION TO DATA SCIENCE EPISODE 6: MACHINE LEARNING TODAY S MENU 1. WHAT IS ML? 2. CLASSIFICATION AND REGRESSSION 3. EVALUATING PERFORMANCE & OVERFITTING WHAT IS MACHINE LEARNING? Definition:
Unsupervised Learning
17s1: COMP9417 Machine Learning and Data Mining Unsupervised Learning May 2, 2017 Acknowledgement: Material derived from slides for the book Machine Learning, Tom M. Mitchell, McGraw-Hill, 1997 http://www-2.cs.cmu.edu/~tom/mlbook.html
Introduction to Machine Learning
Introduction to Machine Learning D. De Cao R. Basili Corso di Web Mining e Retrieval a.a. 2008-9 April 6, 2009 Outline Outline Introduction to Machine Learning Outline Outline Introduction to Machine Learning
STA 414/2104 Statistical Methods for Machine Learning and Data Mining
STA 414/2104 Statistical Methods for Machine Learning and Data Mining Radford M. Neal, University of Toronto, 2014 Week 1 What are Machine Learning and Data Mining? Typical Machine Learning and Data Mining
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
Analytical Study of Some Selected Classification Algorithms in WEKA Using Real Crime Data
Analytical Study of Some Selected Classification Algorithms in WEKA Using Real Crime Data Obuandike Georgina N. Department of Mathematical Sciences and IT Federal University Dutsinma Katsina state, Nigeria
Introduction to Machine Learning
Introduction to Machine Learning Hamed Pirsiavash CMSC 678 http://www.csee.umbc.edu/~hpirsiav/courses/ml_fall17 The slides are closely adapted from Subhransu Maji s slides Course background What is the
CS540 Machine learning Lecture 1 Introduction
CS540 Machine learning Lecture 1 Introduction Administrivia Overview Supervised learning Unsupervised learning Other kinds of learning Outline Administrivia Class web page www.cs.ubc.ca/~murphyk/teaching/cs540-fall08
Multiclass Sentiment Analysis on Movie Reviews
Multiclass Sentiment Analysis on Movie Reviews Shahzad Bhatti Department of Industrial and Enterprise System Engineering University of Illinois at Urbana Champaign Urbana, IL 61801 bhatti2@illinois.edu
Lecture 1: Introduc4on
CSC2515 Spring 2014 Introduc4on to Machine Learning Lecture 1: Introduc4on All lecture slides will be available as.pdf on the course website: http://www.cs.toronto.edu/~urtasun/courses/csc2515/csc2515_winter15.html
ECE-271A Statistical Learning I
ECE-271A Statistical Learning I Nuno Vasconcelos ECE Department, UCSD The course the course is an introductory level course in statistical learning by introductory I mean that you will not need any previous
Syllabus Data Mining for Business Analytics - Managerial INFO-GB.3336, Spring 2018
Syllabus Data Mining for Business Analytics - Managerial INFO-GB.3336, Spring 2018 Course information When: Mondays and Wednesdays 3-4:20pm Where: KMEC 3-65 Professor Manuel Arriaga Email: marriaga@stern.nyu.edu
Unsupervised Learning
09s1: COMP9417 Machine Learning and Data Mining Unsupervised Learning June 3, 2009 Acknowledgement: Material derived from slides for the book Machine Learning, Tom M. Mitchell, McGraw-Hill, 1997 http://www-2.cs.cmu.edu/~tom/mlbook.html
Department of Biostatistics
The University of Kansas 1 Department of Biostatistics The mission of the Department of Biostatistics is to provide an infrastructure of biostatistical and informatics expertise to support and enhance
CS Data Science and Visualization Spring 2016
CS 207 - Data Science and Visualization Spring 2016 Professor: Sorelle Friedler sorelle@cs.haverford.edu An introduction to techniques for the automated and human-assisted analysis of data sets. These
Sanjoy Dasgupta Professor, Computer Science and Engineering Faculty-Affiliate, Calit2
Sanjoy Dasgupta Professor, Computer Science and Engineering Faculty-Affiliate, Calit2 Prior to joining the UCSD Jacobs School in 2002, Sanjoy Dasgupta was a senior member of the technical staff at AT&T
COMP 527: Data Mining and Visualization. Danushka Bollegala
COMP 527: Data Mining and Visualization Danushka Bollegala Introductions Lecturer: Danushka Bollegala Office: 2.24 Ashton Building (Second Floor) Email: danushka@liverpool.ac.uk Personal web: http://danushka.net/
Government of Russian Federation. Federal State Autonomous Educational Institution of High Professional Education
Government of Russian Federation Federal State Autonomous Educational Institution of High Professional Education National Research University Higher School of Economics Syllabus for the course Advanced
DATA SCIENCE CURRICULUM
DATA SCIENCE CURRICULUM Immersive program covers all the necessary tools and concepts used by data scientists in the industry, including machine learning, statistical inference, and working with data at
CS534 Machine Learning
CS534 Machine Learning Spring 2013 Lecture 1: Introduction to ML Course logistics Reading: The discipline of Machine learning by Tom Mitchell Course Information Instructor: Dr. Xiaoli Fern Kec 3073, xfern@eecs.oregonstate.edu
Linear Regression. Chapter Introduction
Chapter 9 Linear Regression 9.1 Introduction In this class, we have looked at a variety of di erent models and learning methods, such as finite state machines, sequence models, and classification methods.
Lecture 22: Introduction to Natural Language Processing (NLP)
Lecture 22: Introduction to Natural Language Processing (NLP) Traditional NLP Statistical approaches Statistical approaches used for processing Internet documents If we have time: hidden variables COMP-424,
Master s (Level 7) Standards in Statistics
Master s (Level 7) Standards in Statistics In determining the Master s (qualifications framework Level 7) standards for a course in statistics, reference is made to the Graduate, Honours Degree, (Level
Bird Species Identification from an Image
Bird Species Identification from an Image Aditya Bhandari, 1 Ameya Joshi, 2 Rohit Patki 3 1 Department of Computer Science, Stanford University 2 Department of Electrical Engineering, Stanford University
COMP 551 Applied Machine Learning Lecture 11: Ensemble learning
COMP 551 Applied Machine Learning Lecture 11: Ensemble learning Instructor: Herke van Hoof (herke.vanhoof@mcgill.ca) Slides mostly by: (jpineau@cs.mcgill.ca) Class web page: www.cs.mcgill.ca/~hvanho2/comp551
THE DESIGN OF A LEARNING SYSTEM Lecture 2
THE DESIGN OF A LEARNING SYSTEM Lecture 2 Challenge: Design a Learning System for Checkers What training experience should the system have? A design choice with great impact on the outcome Choice #1: Direct
Modelling Student Knowledge as a Latent Variable in Intelligent Tutoring Systems: A Comparison of Multiple Approaches
Modelling Student Knowledge as a Latent Variable in Intelligent Tutoring Systems: A Comparison of Multiple Approaches Qandeel Tariq, Alex Kolchinski, Richard Davis December 6, 206 Introduction This paper
Secondary Masters in Machine Learning
Secondary Masters in Machine Learning Student Handbook Revised 8/20/14 Page 1 Table of Contents Introduction... 3 Program Requirements... 4 Core Courses:... 5 Electives:... 6 Double Counting Courses:...
CS 6140: Machine Learning Spring 2017
CS 6140: Machine Learning Spring 2017 Instructor: Lu Wang College of Computer and Informa@on Science Northeastern University Webpage: www.ccs.neu.edu/home/luwang Email: luwang@ccs.neu.edu Time and Loca@on
Introduction to Classification, aka Machine Learning
Introduction to Classification, aka Machine Learning Classification: Definition Given a collection of examples (training set ) Each example is represented by a set of features, sometimes called attributes
ECE 5424: Introduction to Machine Learning
ECE 5424: Introduction to Machine Learning Topics: Classification: Naïve Bayes Readings: Barber 10.1-10.3 Stefan Lee Virginia Tech Administrativia HW2 Due: Friday 09/28, 10/3, 11:55pm Implement linear
Appliance-specific power usage classification and disaggregation
Appliance-specific power usage classification and disaggregation Srinikaeth Thirugnana Sambandam, Jason Hu, EJ Baik Department of Energy Resources Engineering Department, Stanford Univesrity 367 Panama
CSC 411 MACHINE LEARNING and DATA MINING
CSC 411 MACHINE LEARNING and DATA MINING Lectures: Monday, Wednesday 12-1 (section 1), 3-4 (section 2) Lecture Room: MP 134 (section 1); Bahen 1200 (section 2) Instructor (section 1): Richard Zemel Instructor
Multi-Class Sentiment Analysis with Clustering and Score Representation
Multi-Class Sentiment Analysis with Clustering and Score Representation Mohsen Farhadloo Erik Rolland mfarhadloo@ucmerced.edu 1 CONTENT Introduction Applications Related works Our approach Experimental
Welcome to CMPS 142 and 242: Machine Learning
Welcome to CMPS 142 and 242: Machine Learning Instructor: David Helmbold, dph@soe.ucsc.edu Office hours: Monday 1:30-2:30, Thursday 4:15-5:00 TA: Aaron Michelony, amichelo@soe.ucsc.edu Web page: www.soe.ucsc.edu/classes/cmps242/fall13/01
Automatic Text Summarization for Annotating Images
Automatic Text Summarization for Annotating Images Gediminas Bertasius November 24, 2013 1 Introduction With an explosion of image data on the web, automatic image annotation has become an important area
PG DIPLOMA IN MACHINE LEARNING & AI 11 MONTHS ONLINE
& PG DIPLOMA IN MACHINE LEARNING & AI 11 MONTHS ONLINE UpGrad is an online education platform to help individuals develop their professional potential in the most engaging learning environment. Online
Introduction to Deep Learning
Introduction to Deep Learning M S Ram Dept. of Computer Science & Engg. Indian Institute of Technology Kanpur Reading of Chap. 1 from Learning Deep Architectures for AI ; Yoshua Bengio; FTML Vol. 2, No.
T Machine Learning: Advanced Probablistic Methods
T-61.5140 Machine Learning: Advanced Probablistic Methods Jaakko Hollmén Department of Information and Computer Science Helsinki University of Technology, Finland e-mail: Jaakko.Hollmen@tkk.fi Web: http://www.cis.hut.fi/opinnot/t-61.5140/
Machine Learning. Introduction. Marc Toussaint. Duy Nguyen-Tuong. Summer University of Stuttgart. Bosch Center for Artificial Intelligence
Machine Learning Introduction Marc Toussaint University of Stuttgart Duy Nguyen-Tuong Bosch Center for Artificial Intelligence Summer 2017 What is Machine Learning? 1) A long list of methods/algorithms
INTRODUCTION. Pattern Recognition. Slides at https://ekapolc.github.io/slides/l1-intro.pdf
INTRODUCTION Pattern Recognition Slides at https://ekapolc.github.io/slides/l1-intro.pdf Syllabus Registration Graduate students 12 slots, sec 2 If filled, register as V/W only For undergrads, sec 21 Signup
EECS 349 Machine Learning
EECS 349 Machine Learning Instructor: Doug Downey (some slides from Pedro Domingos, University of Washington) 1 Logistics Instructor: Doug Downey Email: ddowney@eecs.northwestern.edu Office hours: Mondays
DS 502/MA 543 STATISTICAL METHODS FOR DATA SCIENCE
DS 502/MA 543 STATISTICAL METHODS FOR DATA SCIENCE This course surveys the statistical methods most useful in data science applications. Topics covered include predictive modeling methods, including multiple
BGS Training Requirement in Statistics
BGS Training Requirement in Statistics All BGS students are required to have an understanding of statistical methods and their application to biomedical research. Most students take BIOM611, Statistical
Service courses for graduate students in degree programs other than the MS or PhD programs in Biostatistics.
Course Catalog In order to be assured that all prerequisites are met, students must acquire a permission number from the education coordinator prior to enrolling in any Biostatistics course. Courses are
Introduction to Classification
Introduction to Classification Classification: Definition Given a collection of examples (training set ) Each example is represented by a set of features, sometimes called attributes Each example is to
Detecting the Learning Value of Items In a Randomized Problem Set
Detecting the Learning Value of Items In a Randomized Problem Set Zachary A. Pardos 1, Neil T. Heffernan Worcester Polytechnic Institute {zpardos@wpi.edu, nth@wpi.edu} Abstract. Researchers that make tutoring
Introduction to ML. URL:
Introduction to ML Abhijit Mishra Research Scholar Center for Indian Language Technology Department of Computer Science and Engineering Indian Institute of Technology Bombay Email: abhijitmishra@cse.iitb.ac.in
Evaluation and Comparison of Performance of different Classifiers
Evaluation and Comparison of Performance of different Classifiers Bhavana Kumari 1, Vishal Shrivastava 2 ACE&IT, Jaipur Abstract:- Many companies like insurance, credit card, bank, retail industry require
LAHORE SCHOOL OF ECONOMICS. Course information & Study Guide. Probability and Statistical Inference
LAHORE SCHOOL OF ECONOMICS Course information & Study Guide Probability and Statistical Inference Course Instructor: Assistant Professor Azmat Nafees CONTENTS Introduction Course overview Learning resources
EECS 349 Machine Learning
EECS 349 Machine Learning Instructor: Doug Downey (some slides from Pedro Domingos, University of Washington) 1 Logistics Instructor: Doug Downey Email: ddowney@eecs.northwestern.edu Office hours: Mondays
Welcome to CMPS 142: Machine Learning. Administrivia. Lecture Slides for. Instructor: David Helmbold,
Welcome to CMPS 142: Machine Learning Instructor: David Helmbold, dph@soe.ucsc.edu Web page: www.soe.ucsc.edu/classes/cmps142/winter07/ Text: Introduction to Machine Learning, Alpaydin Administrivia Sign
Bayesian Deep Learning for Integrated Intelligence: Bridging the Gap between Perception and Inference
1 Bayesian Deep Learning for Integrated Intelligence: Bridging the Gap between Perception and Inference Hao Wang Department of Computer Science and Engineering Joint work with Naiyan Wang, Xingjian Shi,
Performance Analysis of Various Data Mining Techniques on Banknote Authentication
International Journal of Engineering Science Invention ISSN (Online): 2319 6734, ISSN (Print): 2319 6726 Volume 5 Issue 2 February 2016 PP.62-71 Performance Analysis of Various Data Mining Techniques on
A Bayesian Hierarchical Model for Comparing Average F1 Scores
A Bayesian Hierarchical Model for Comparing Average F1 Scores Dell Zhang 1, Jun Wang 2, Xiaoxue Zhao 2, Xiaoling Wang 3 1 Birkbeck, University of London, UK 2 University College London, UK 3 East China
Generalizing Detection of Gaming the System Across a Tutoring Curriculum
Generalizing Detection of Gaming the System Across a Tutoring Curriculum Ryan S.J.d. Baker 1, Albert T. Corbett 2, Kenneth R. Koedinger 2, Ido Roll 2 1 Learning Sciences Research Institute, University
Using AgenaRisk to visualise risk and model uncertainty
Using AgenaRisk to visualise risk and model uncertainty Martin Neil Agena Ltd & Risk Assessment and Decision Analysis Research Group, Department of Computer Science, Queen Mary, University of London London,
Computer Vision and Machine Learning
Computer Vision and Machine Learning About us... Asya (2012) Alex Z (2013) Alex K (2013) you? Christoph Amélie (2015) Georg (IST Fellow) About us central office building, 3rd floor Machine Learning (ML)
A Student s Guide to Data and Error Analysis
A Student s Guide to Data and Error Analysis All students taking laboratory courses within the physical sciences and engineering will benefit from this book, whilst researchers will find it an invaluable
COMP 551 Applied Machine Learning Lecture 12: Ensemble learning
COMP 551 Applied Machine Learning Lecture 12: Ensemble learning Associate Instructor: Herke van Hoof (herke.vanhoof@mcgill.ca) Slides mostly by: (jpineau@cs.mcgill.ca) Class web page: www.cs.mcgill.ca/~jpineau/comp551
- Introduzione al Corso - (a.a )
Short Course on Machine Learning for Web Mining - Introduzione al Corso - (a.a. 2009-2010) Roberto Basili (University of Roma, Tor Vergata) 1 Overview MLxWM: Motivations and perspectives A temptative syllabus
Machine Learning Algorithms: A Review
Machine Learning Algorithms: A Review Ayon Dey Department of CSE, Gautam Buddha University, Greater Noida, Uttar Pradesh, India Abstract In this paper, various machine learning algorithms have been discussed.
10701/15781 Machine Learning, Spring 2005: Homework 1
10701/15781 Machine Learning, Spring 2005: Homework 1 Due: Monday, February 6, beginning of the class 1 [15 Points] Probability and Regression [Stano] 1 1.1 [10 Points] The Matrix Strikes Back The Matrix
Lecture 1: Basic Concepts of Machine Learning
Lecture 1: Basic Concepts of Machine Learning Cognitive Systems - Machine Learning Ute Schmid (lecture) Johannes Rabold (practice) Based on slides prepared March 2005 by Maximilian Röglinger, updated 2010
A study of the NIPS feature selection challenge
A study of the NIPS feature selection challenge Nicholas Johnson November 29, 2009 Abstract The 2003 Nips Feature extraction challenge was dominated by Bayesian approaches developed by the team of Radford
Large Scale Data Analysis Using Deep Learning
Large Scale Data Analysis Using Deep Learning Introduction to Deep Learning U Kang Seoul National University U Kang 1 In This Lecture Overview of deep learning History of deep learning and its recent advances
Montgomery County Community College MAT 130 Probability and Statistics 4-4-0
Montgomery County Community College MAT 130 Probability and Statistics 4-4-0 COURSE DESCRIPTION: A course designed for students in all fields. Topics include organization of data, measures of central tendency,
Probabilistic Latent Semantic Analysis
Probabilistic Latent Semantic Analysis Thomas Hofmann Presentation by Ioannis Pavlopoulos & Andreas Damianou for the course of Data Mining & Exploration 1 Outline Latent Semantic Analysis o Need o Overview
6.00 Intro: Comp Sci & Programming
6.00 Intro: Comp Sci & Programming 250 200 150 100 50 0 2009SP 2010FA 2010SP 2011FA 2011SP 2012FA 2012SP 2013FA 2013SP 2014FA 6.00 Curriculum Overview Prereqs: Elementary Mathematics Outcomes: Basic Programming
University of California, Berkeley Department of Statistics Statistics Undergraduate Major Information 2018
University of California, Berkeley Department of Statistics Statistics Undergraduate Major Information 2018 OVERVIEW and LEARNING OUTCOMES of the STATISTICS MAJOR Statisticians help design data collection
Data Mining ( Z4)
Data Mining (95-791 Z4) Syllabus Mini 4, Spring 2018 This syllabus is adapted from Dr. Dubrawski's 95-791 Data Mining Syllabus Lecture Instructor: Dr. Artur Dubrawski awd@cs.cmu.edu Distance Learning Facilitator:
Towards Moment of Learning Accuracy
Towards Moment of Learning Accuracy Zachary A. Pardos and Michael V. Yudelson Massachusetts Institute of Technology 77 Massachusetts Ave., Cambridge, MA 02139 Carnegie Learning, Inc. 437 Grant St., Pittsburgh,