MACHINE LEARNING 400410038 張銘軒 603410126 譚恆力 1. OUTLINE OVERVIEW HOW DOSE THE MACHINE “ LEARN ” ? ADVANTAGE OF MACHINE LEARNING ALGORITHM TYPES  SUPERVISED.

Slides:



Advertisements
Similar presentations
Statistical Machine Learning- The Basic Approach and Current Research Challenges Shai Ben-David CS497 February, 2007.
Advertisements

Introduction to Machine Learning BITS C464/BITS F464
Godfather to the Singularity
INTRODUCTION TO MACHINE LEARNING David Kauchak CS 451 – Fall 2013.
Machine learning continued Image source:
An Overview of Machine Learning
Data Mining Glen Shih CS157B Section 1 Dr. Sin-Min Lee April 4, 2006.
Data Visualization STAT 890, STAT 442, CM 462
Data Mining: A Closer Look Chapter Data Mining Strategies.
ETHEM ALPAYDIN © The MIT Press, Lecture Slides for.
MACHINE LEARNING 1. Introduction. What is Machine Learning? Based on E Alpaydın 2004 Introduction to Machine Learning © The MIT Press (V1.1) 2  Need.
Introduction to Machine Learning Anjeli Singh Computer Science and Software Engineering April 28 th 2008.
Introduction to Machine Learning course fall 2007 Lecturer: Amnon Shashua Teaching Assistant: Yevgeny Seldin School of Computer Science and Engineering.
Learning Programs Danielle and Joseph Bennett (and Lorelei) 4 December 2007.
INTRODUCTION TO Machine Learning ETHEM ALPAYDIN © The MIT Press, Lecture Slides for.
INTRODUCTION TO Machine Learning 3rd Edition
Chapter 5 Data mining : A Closer Look.
Introduction to machine learning
Statistical Natural Language Processing. What is NLP?  Natural Language Processing (NLP), or Computational Linguistics, is concerned with theoretical.
CS Machine Learning. What is Machine Learning? Adapt to / learn from data  To optimize a performance function Can be used to:  Extract knowledge.
Copyright R. Weber Machine Learning, Data Mining ISYS370 Dr. R. Weber.
Artificial Intelligence Lecture No. 27 Dr. Asad Ali Safi ​ Assistant Professor, Department of Computer Science, COMSATS Institute of Information Technology.
Machine Learning An Introduction. What is Learning?  Herbert Simon: “Learning is any process by which a system improves performance from experience.”
Bayesian networks Classification, segmentation, time series prediction and more. Website: Twitter:
Lecture 10: 8/6/1435 Machine Learning Lecturer/ Kawther Abas 363CS – Artificial Intelligence.
Machine Learning.
Yazd University, Electrical and Computer Engineering Department Course Title: Advanced Software Engineering By: Mohammad Ali Zare Chahooki 1 Introduction.
1 Machine Learning 1.Where does machine learning fit in computer science? 2.What is machine learning? 3.Where can machine learning be applied? 4.Should.
Data Mining BY JEMINI ISLAM. Data Mining Outline: What is data mining? Why use data mining? How does data mining work The process of data mining Tools.
CS 536 – Ahmed Elgammal CS 536: Machine Learning Fall 2005 Ahmed Elgammal Dept of Computer Science Rutgers University.
Machine Learning Extract from various presentations: University of Nebraska, Scott, Freund, Domingo, Hong,
Machine Learning Overview Tamara Berg CS 560 Artificial Intelligence Many slides throughout the course adapted from Svetlana Lazebnik, Dan Klein, Stuart.
CHAPTER 1: Introduction. 2 Why “Learn”? Machine learning is programming computers to optimize a performance criterion using example data or past experience.
Copyright Paula Matuszek Kinds of Machine Learning.
Machine Learning Chapter 18, 21 Some material adopted from notes by Chuck Dyer.
WHAT IS DATA MINING?  The process of automatically extracting useful information from large amounts of data.  Uses traditional data analysis techniques.
Learning Kernel Classifiers 1. Introduction Summarized by In-Hee Lee.
Machine Learning BY UZMA TUFAIL MCS : section (E) ROLL NO: /31/2016.
Artificial Intelligence, simulation and modelling.
Machine Learning. Definition Machine learning is a subfield of computer science that evolved from the study of pattern recognition and computational.
Introduction to Machine Learning August, 2014 Vũ Việt Vũ Computer Engineering Division, Electronics Faculty Thai Nguyen University of Technology.
Introduction to Machine Learning. Learning Learning is acquiring new, or modifying existing, knowledge, behaviors, skills, values, or preferences and.
By William Campbell MACHINE LEARNING. OVERVIEW What is machine learning? Human decision-making Learning algorithms Applications.
Network Management Lecture 13. MACHINE LEARNING TECHNIQUES 2 Dr. Atiq Ahmed Université de Balouchistan.
Machine learning & object recognition Cordelia Schmid Jakob Verbeek.
Brief Intro to Machine Learning CS539
Data Mining, Machine Learning, Data Analysis, etc. scikit-learn
Machine Learning, Bio-informatics and Weka
Machine Learning overview Chapter 18, 21
Machine Learning overview Chapter 18, 21
CHAPTER 1 Introduction BIC 3337 EXPERT SYSTEM.
DATA MINING © Prentice Hall.
Eick: Introduction Machine Learning
Intro to Machine Learning

Data Mining 101 with Scikit-Learn
CH. 1: Introduction 1.1 What is Machine Learning Example:
Machine Learning Ali Ghodsi Department of Statistics
Azure Machine Learning Noam Brezis Madeira Data Solutions
AV Autonomous Vehicles.
What is Pattern Recognition?
INTRODUCTION.
3.1.1 Introduction to Machine Learning
ITEC323 Lecture 1.
Data Mining, Machine Learning, Data Analysis, etc. scikit-learn
Data Mining, Machine Learning, Data Analysis, etc. scikit-learn
Christoph F. Eick: A Gentle Introduction to Machine Learning
CS639: Data Management for Data Science
Machine learning: What is it?
Machine Learning overview Chapter 18, 21
Presentation transcript:

MACHINE LEARNING 張銘軒 譚恆力 1

OUTLINE OVERVIEW HOW DOSE THE MACHINE “ LEARN ” ? ADVANTAGE OF MACHINE LEARNING ALGORITHM TYPES  SUPERVISED LEARNING  UNSUPERVISED LEARNING  REINFORCEMENT LEARNING MACHINE LEARNING AND DATA MINING APPLICATIONS CONCLUSION REFERENCES 2

OVERVIEW Machine learning is the science of getting computers to act without being explicitly programmed. In present time, machine learning has given us self-driving cars, practical speech recognition, effective web search, and a vastly improved understanding of the human genome. Machine learning is so pervasive today that you probably use it dozens of times a day without knowing it. 3

HOW DOSE THE MACHINE “ LEARN ” ? Machine learning deals with the construction and study of algorithms that can learn from data. Such algorithms operate by building a model based on inputs and using that to make predictions or decisions, rather than following only explicitly programmed instructions. 4

ADVANTAGE OF MACHINE LEARNING The emphasis of machine learning is on automatic methods. The goal is to devise learning algorithms that do the learning automatically without human’s assistance. Rather than program the computer to solve the task directly, in machine learning, we seek methods by which the computer will come up with its own program based on examples that we provide. 5

ALGORITHM TYPES Based on the desired outcome of the algorithm or the type of input available during training of the machine, machine learning tasks can be in following several forms:  Supervised learning  Unsupervised learning  Semi-supervised learning  Reinforcement learning  … 6

SUPERVISED LEARNING Supervised learning is the machine learning task of inferring a function from labeled training data. The training data consist of a set of training examples. In supervised learning, each example is a pair consisting of an input object and a desired output value. 7

UNSUPERVISED LEARNING Unsupervised learning is closely related to the problem of density estimation in statistics. However unsupervised learning also encompasses many other techniques that seek to summarize and explain key features of the data. Approaches to unsupervised learning include:  Clustering (e.g., k-means, mixture models, hierarchical clustering)  Hidden Markov models  Blind signal separation 8

REINFORCEMENT LEARNING Reinforcement learning is an area of machine learning inspired by behaviorist psychology, concerned with how software agents should take actions in an environment so as to maximize some notion of cumulative reward. Reinforcement learning is different from standard supervised learning in that correct input/output pairs are never presented, nor sub-optimal actions explicitly corrected. 9

Machine Learning and Data Mining Machine learning is sometimes conflated with data mining, although data mining focuses more on exploratory data analysis. The two areas overlap in many ways, data mining uses many machine learning methods.  Retail: Market basket analysis, Customer Relationship Management (CRM)  Finance: Credit scoring, fraud detection  Manufacturing: Control, robotics, troubleshooting  Medicine: Medical diagnosis  Telecommunications: Spam filters, intrusion detectionWeb mining: Search engines ... 10

APPLICATIONS Nowadays, machine learning is widely used, e.g.:  Machine perception  Computer vision (including object recognition)  Syntactic pattern recognition  Search engines  Medical diagnosis  Bioinformatics  Brain-machine interfaces  Detecting credit card fraud  Stock market analysis  Classifying DNA sequences 11

CONCLUSION These days, machine learning techniques are being widely used to solve real-world problems by storing, manipulating, extracting and retrieving data from large sources. Research in machine learning has been vigorous and fruitful, and we can look forward to a continuation of good work in this area. 12

References Wikipedia Berkeley Statistical Machine Learning Journal of Machine Learning Research Michael I. Jordan “Statistics and Machine Learning” mtt?context=3 Robert E. Schapire “Foundations of Machine Learning” 13