Azure Machine Learning

Slides:



Advertisements
Similar presentations
Data Visualization STAT 890, STAT 442, CM 462
Advertisements

Chapter 8 Logistic Regression 1. Introduction Logistic regression extends the ideas of linear regression to the situation where the dependent variable,
CIS 678 Artificial Intelligence problems deduction, reasoning knowledge representation planning learning natural language processing motion and manipulation.
Introduction to Neural Networks Simon Durrant Quantitative Methods December 15th.
Introduction to Machine Learning course fall 2007 Lecturer: Amnon Shashua Teaching Assistant: Yevgeny Seldin School of Computer Science and Engineering.
Sponsors. Smart Apps with Azure ML CHRIS MCHENRY VP OF TECHNOLOGY, INTEGRO
Data Mining: A Closer Look
Data Mining: A Closer Look Chapter Data Mining Strategies 2.
Chapter 5 Data mining : A Closer Look.
Introduction to Data Mining Data mining is a rapidly growing field of business analytics focused on better understanding of characteristics and.
1 Data Mining DT211 4 Refer to Connolly and Begg 4ed.
Machine Learning An Introduction. What is Learning?  Herbert Simon: “Learning is any process by which a system improves performance from experience.”
 Fundamentally, data mining is about processing data and identifying patterns and trends in that information so that you can decide or judge.  Data.
Advanced Database Course (ESED5204) Eng. Hanan Alyazji University of Palestine Software Engineering Department.
CONFIDENTIAL1 Hidden Decision Trees to Design Predictive Scores – Application to Fraud Detection Vincent Granville, Ph.D. AnalyticBridge October 27, 2009.
Chapter 11 Statistical Techniques. Data Warehouse and Data Mining Chapter 11 2 Chapter Objectives  Understand when linear regression is an appropriate.
Machine Learning Extract from various presentations: University of Nebraska, Scott, Freund, Domingo, Hong,
WHAT IS DATA MINING?  The process of automatically extracting useful information from large amounts of data.  Uses traditional data analysis techniques.
Miloš Kotlar 2012/115 Single Layer Perceptron Linear Classifier.
Azure Machine Learning Introduction to Azure ML. Setting Expectations This presentation is for you if…  you hear the buzzword “Machine Learning” and.
Introduction to Classification & Clustering Villanova University Machine Learning Lab Module 4.
AZURE MACHINE LEARNING Bringing New Value To Old Data SQL Saturday #
Network Management Lecture 13. MACHINE LEARNING TECHNIQUES 2 Dr. Atiq Ahmed Université de Balouchistan.
DATA MINING and VISUALIZATION Instructor: Dr. Matthew Iklé, Adams State University Remote Instructor: Dr. Hong Liu, Embry-Riddle Aeronautical University.
Cloud Analytics Platforms Christian Frey. About AIDA Our mission is to advance knowledge in data analytics through research, education and outreach Our.
9/24/2017 7:27 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Introducing Precictive Analytics
Bhakthi Liyanage SQL Saturday Atlanta 15 July 2017
Big data classification using neural network
Data Mining, Machine Learning, Data Analysis, etc. scikit-learn
Azure Machine Learning
Introduction to Classification & Clustering
ANOMALY DETECTION FRAMEWORK FOR BIG DATA
MIS2502: Data Analytics Advanced Analytics - Introduction
Machine Learning overview Chapter 18, 21
Machine Learning overview Chapter 18, 21
Make Predictions Using Azure Machine Learning Studio
Intro to Machine Learning
Kathi Kellenberger Redgate
Data mining and statistical learning, lecture 1b
Introduction to R Programming with AzureML
Data Mining 101 with Scikit-Learn
Kathi Kellenberger Redgate
Machine Learning Ali Ghodsi Department of Statistics
Azure Machine Learning Noam Brezis Madeira Data Solutions
Adrian Tuhtan CS157A Section1
Kathi Kellenberger Redgate
Kathi Kellenberger Redgate Software
Azure Machine Learning 101
MACHINE LEARNING.
Introduction to Azure Machine Learning Studio
Machine Learning & Data Science
Advanced Analytics. Advanced Analytics What is Machine Learning?
Term Definition Examples Data Science Statistics with large data sets
Microsoft Ignite NZ October 2016 SKYCITY, Auckland.
Data Science introduction.
Supervised vs. unsupervised Learning
3.1.1 Introduction to Machine Learning
What is this and how can I use it?
Machine Learning in FinTech
Integrating Deep Learning with Cyber Forensics
Data Mining, Machine Learning, Data Analysis, etc. scikit-learn
Data Mining, Machine Learning, Data Analysis, etc. scikit-learn
Getting Started Using Azure ML
MIS2502: Data Analytics Classification Using Decision Trees
Machine Learning – a Probabilistic Perspective
Welcome! Knowledge Discovery and Data Mining
Machine Learning in Business John C. Hull
Machine Learning.
Getting Started with Microsoft Azure Machine Learning
Presentation transcript:

Azure Machine Learning Microsoft Research

What is Machine Learning? Computer "learns" from data in order to perform predictive analytics Credit-card fraud detection Online shopping recommendations Self-driving cars and more Supervised learning Unsupervised learning Machine Learning finds patterns in large volumes of data and uses those patterns to perform predictive analysis. Microsoft offers Azure Machine Learning, while Amazon offers Amazon Machine Learning and Google offers the Google Prediction API. Software products such as MATLAB support traditional, non-cloud-based ML modeling. Machine learning models fall into two broad categories: supervised and unsupervised. In supervised learning, the model is "trained" with a large volume of data and algorithms are then used to predict an outcome from future inputs. Most supervised learning models use regression algorithms to compute an outcome from a continuous set of possible outcomes (for example, your score on a test), or classification algorithms to compute the probability of an outcome from a finite set of possible outcomes (for example, the probability that an e-mail is spam or a credit-card transaction is fraudulent). In unsupervised learning, the computer isn't trained, but is presented with a set of data and challenged to find relationships in it. K-Means Clustering is a common unsupervised learning algorithm. For a great explanation of how it works, see https://blog.intercom.io/machine-learning-way-easier-than-it-looks/.

Machine Learning in Action https://how-old.net/# offers a great example of machine learning in action. Created by Microsoft, the site uses advanced image-recognition techniques to analyze photos you upload and then uses an ML model to "predict" the ages of the people in the photos.

Azure Machine Learning Cloud service for building sophisticated ML models Includes ML Studio for composing experiments Classification, regression, anomaly detection, and more Supports text input, CSV, TSV, OData, RData, ZIP, and more Supports R and Python Embodies years of research Machine Learning finds patterns in large volumes of data and uses those patterns to perform predictive analysis. Microsoft offers Azure Machine Learning, while Amazon offers Amazon Machine learning and Google offers the Google Prediction API. Software products such as MATLAB support traditional, non-cloud-based ML modeling. To show a great example of ML at work, demo https://how-old.net/#.

I spent last semester building a regression model in Python, and I just did the same thing in 10 minutes with Azure ML This quote came from a graduate student who attended this class at UMass. He had already accepted at offer to go to work for Microsoft post-graduation. 

Microsoft Machine Learning History Modified from http://pulsweb.fr/predict-wine-quality-azureml

Machine Learning Process From: Introduction to Microsoft Azure by David Chappell

Azure ML Algorithms Anomaly detection is the identification of items, events, or observations which do not conform to an expected pattern or other items in a dataset. A classic example is examining a dataset representing banking transactions and detecting potentially fraudulent transactions in that group. Regression algorithms seek to establish and quantify relationships between variables. By establishing a relationship between a dependent variable and one or more independent variables, regression analysis can enable the value of a dependent variable to be predicted given a set of inputs with a quantifiable accuracy. A great example can be seen at https://how-old.net/#, a site that lets you upload a photo and then guesses your age with uncanny accuracy. The site uses Azure Machine Learning and combines classic regression with advanced image recognition. The purpose of classification algorithms is to identify the category to which an observation belongs based on training data consisting of observations which have already been classified (assigned to a category). A great example is determining whether an e-mail belongs to the "spam" category or the "not-spam" category. Clustering seeks to group a set of objects in such a way that objects in the same group (called a cluster) are more similar to each other than to those in other groups (clusters).

http://aka.ms/MLCheatSheet One example here is if you want to use a set of input values to predict an output value, use linear regression. But if you're more interested in the distribution of the output use fast forest quantile regression instead. An example of when you would use the latter is using growth charts to assess child development. "Abby's height is in the 10% quantile of the heights of kids her age."

Free e-Book http://bit.ly/a4r-mlbook

Azure Machine Learning HOL.html Hands-On Lab Using Azure Machine Learning Azure Machine Learning HOL.html