As a reference, please find a version of the Machine Learning Process described in the diagram below.

Size: px
Start display at page:

Download "As a reference, please find a version of the Machine Learning Process described in the diagram below."

Transcription

1

2 PREDICTION OVERVIEW In this experiment, two of the Project PEACH datasets will be used to predict the reaction of a user to atmospheric factors. This experiment represents the first iteration of the Machine Learning Process and further iterations and explorations should be performed in order to achieve the desired performance of the model. As a reference, please find a version of the Machine Learning Process described in the diagram below. This experiment can be found in the Cortana Analytics Gallery

3 LOAD DATA There are multiple ways to bring data into Azure Machine Learning Studio. For this sample experiment the datasets were uploaded from local files (af_data.csv and 1. Upload data from local file Click on New at the bottom left of the page in Azure ML Studio. Go to Dataset -> From Local File.

4 Choose the file to upload from your local machine, check the correct options are entered and click OK. Repeat this for all datasets you want to upload. The datasets uploaded should now appear under Saved Datasets -> My Datasets when you start a new experiment.

5 2. Use the Reader module The Reader module can be used to load data into Azure ML from various data sources. You can choose from public Web URL, Hive Query, Azure table, Azure blob and Data feed provider. As an example, you can load the datasets from Project Peach which are stored in Azure blob (more info at You need to insert the URI and choose the file format as shown below.

6 EXPLORE DATA AND ENGINEER FEATURES Once your datasets are in Azure ML, you can drag then into the workspace. You can visualize the data by rightclicking on the output of the dataset module and selecting Visualize. The User Profile dataset has rows and 21 columns, and you can see a preview of the data. If you click on one of the columns, some basic statistics appear on the right-hand side. Visualize the atmospheric factors dataset. The Timestamp column is a numeric feature and the format of the date is not one recognized by Azure ML. To convert this column in to a DateTime feature, you need to first convert it to a string and then use some simple R code to convert it to a format accepted by Azure ML.

7 Search for the Metadata Editor module in the search box at the top-left of the page and drag the module onto the workspace. Connect the output of the Atmospheric dataset to the input of the Metadata Editor. Click on the Metadata Editor module and its Properties are going to appear in the right-hand side. Click Launch column selector and include the TIMESTAMP column in the pop-up window as shown below.

8 Insert a Execute R Script module onto the workspace and click on it. On the right-hand side you will see a box filled with sample R code. Delete the existing code and insert the code from the text box below. This code is reading the values in the column TIMESTAMP and converting them in the standard Date format which is readable by Azure ML.

9 # Map 1-based optional input ports to variables dataset1 <- maml.mapinputport(1) # class: data.frame dataset1$timestamp <- as.date(dataset1$timestamp, format="%y%m%d") # Select data.frame to be sent to the output Dataset port maml.mapoutputport("dataset1"); Click Run at the bottom of the page to run the experiment. As you progress in this sample, run the experiment after inserting new modules to be able to visualize the output of the modules and check everything is running as expected. After the experiment finished running, right-click visualize the output of the Execute R Script module. The TIMESTAMP column should be in a different format as shown below. The ATMOSPHERIC_CONDITION column is a string feature and the EXPOSURE_LEVEL column is a numeric feature. These columns only take a specific number a values so their data type should be converted to categorical. This can be achieved using another Metadata Editor module.

10 Drag another Metadata Editor module into the workspace and change its properties as shown below.

11 Next step is to join the two datasets to be able to train a machine learning models on the combined data. Drag the Join module in the workspace and connect the output of the Metadata Editor module to the left-hand side input and the output of the User Profile data to the right-hand side input of the Join module. The two dataset are joined on User ID. Click on the Join module and set its properties as shown below. Make sure the Keep the right key columns in the joined table box is unticked.

12 Run the experiment and right-click visualize the output of the join once the experiment finished running. You should see a join dataset as below.

13 TRAIN, SCORE AND EVALUATE MACHINE LEARNING MODELS The data needs to be split into two sets: a training set and a testing set. The training set is used to the train the machine learning models and the testing set is used to measure the performance of the trained model. To split the data, we use the Split Data module. Set the properties of the Split Data module to: Splitting mode Split Rows, Fraction of rows in the first output dataset 0.7, Random seed 0 and Stratified split False. Make sure the Randomized split checkbox is ticked. The first output of this module will contain 70% of the data which is the training set and the second output of the module will contain the remaining 30%. Next we need to choose the machine learning model for this prediction problem. We can to predict if the user has no reaction or a negative reaction to the atmospheric factors. The user reaction is recorded in the dataset, so we will use this information to make future predictions. Hence, in this scenario we use a class of machine learning algorithms called supervised learning as our data points are labeled. More specifically we will use binary classification algorithms to predict the user reaction to atmospheric factors. For this sample, we select the Two-class boosted decision tree model. Search for this module and drag it into the workspace. Add a Train Model module. Connect the output of the Two-class decision tree to the left-hand

14 side input of the Train Model module and the first output of the Split Data module to the right-hand input of the Train Model module as shown below. Click on the Train Model module and set the Label column to USER S FEEDBACK using the Launch column selector. Add a Score Model module to the workspace and connect it to the Train Model and the Split Data module as shown below. In this sample, we want to compare two different models to determine which one performs better for this particular problem. Add a Two-class logistic regression module and connect it to a new Train Model and Score Model modules as in the previous step. You should obtain something as in the figure below.

15 In order to compare and evaluate these trained models, we use the Evaluate Model module connected as shown below. Run the experiment and once the experiment finished running, right-click visualize the output of the Evaluate Model module. The Evaluate Results Page shows different metrics and performance measures for your trained algorithms. For example, the accuracy of the Boosted decision tree algorithm is very similar the accuracy of the logistic regression algorithm which is The boosted decision tree is performing better in terms of the ROC curve while the logistic regression is performing better in terms of precision.

16

Applied Machine Learning

Applied Machine Learning Applied Machine Learning Lab 3 Working with Text Data Overview In this lab, you will use R or Python to work with text data. Specifically, you will use code to clean text, remove stop words, and apply

More information

Data Science and Machine Learning Essentials

Data Science and Machine Learning Essentials Data Science and Machine Learning Essentials Lab 5B Publishing Models in Azure ML By Stephen Elston and Graeme Malcolm Overview In this lab you will publish one of the models you created in a previous

More information

Principles of Machine Learning

Principles of Machine Learning Principles of Machine Learning Lab 3 Improving Machine Learning Models Overview In this lab you will explore techniques for improving and evaluating the performance of machine learning models. You will

More information

Introduction to Azure Machine Learning

Introduction to Azure Machine Learning Introduction to Azure Machine Learning Contents Overview... 3 Create a Workspace and Experiment... 5 Explore and Visualize Data... 10 Create a Simple Predictive Model... 14 Exercises... 25 Terms of Use...

More information

Introduction to Data Science

Introduction to Data Science Introduction to Data Science Lab 4 Introduction to Machine Learning Overview In the previous labs, you explored a dataset containing details of lemonade sales. In this lab, you will use machine learning

More information

Data Science Essentials

Data Science Essentials Data Science Essentials Lab 6 Introduction to Machine Learning Overview In this lab, you will use Azure Machine Learning to train, evaluate, and publish a classification model, a regression model, and

More information

Cortana Intelligence Suite Foundations for Dynamics

Cortana Intelligence Suite Foundations for Dynamics Cortana Intelligence Suite Foundations for Dynamics Student Lab Last Updated: Ryan Swanstrom, 9/8/2016 In this lab, you will gain experience using Azure Storage, Azure ML, Azure Data Factory, and Power

More information

Developing Intelligent Apps

Developing Intelligent Apps Developing Intelligent Apps Lab 1 Creating a Simple Client Application By Gerry O'Brien Overview In this lab you will construct a simple client application that will call an Azure ML web service that you

More information

Data Science and Machine Learning Essentials

Data Science and Machine Learning Essentials Data Science and Machine Learning Essentials Lab 3B Building Models in Azure ML By Stephen Elston and Graeme Malcolm Overview In this lab, you will learn how to use R or Python to engineer or construct

More information

Figure 3.20: Visualize the Titanic Dataset

Figure 3.20: Visualize the Titanic Dataset 80 Chapter 3. Data Mining with Azure Machine Learning Studio Figure 3.20: Visualize the Titanic Dataset 3. After verifying the output, we will cast categorical values to the corresponding columns. To begin,

More information

Microsoft Cloud Workshop. Big Data and Visualization Leader Hackathon Guide

Microsoft Cloud Workshop. Big Data and Visualization Leader Hackathon Guide Microsoft Cloud Workshop Big Data and Visualization Leader Hackathon Guide August 2017 2017 Microsoft Corporation. All rights reserved. This document is confidential and proprietary to Microsoft. Internal

More information

Data Science and Machine Learning Essentials

Data Science and Machine Learning Essentials Data Science and Machine Learning Essentials Lab 3C Evaluating Models in Azure ML By Stephen Elston and Graeme Malcolm Overview In this lab, you will learn how to evaluate and improve the performance of

More information

Data Science and Machine Learning Essentials

Data Science and Machine Learning Essentials Data Science and Machine Learning Essentials Lab 4C Working with Unsupervised Learning Models By Stephen Elston and Graeme Malcolm Overview The previous labs in this course have used supervised machine

More information

How to create a theograph. A step-by-step guide

How to create a theograph. A step-by-step guide How to create a theograph A step-by-step guide Simple theograph Firstly, to create a theograph you need data covering multiple services and events with relevant dates. Once in Tableau we are going to create

More information

Index. Scott Klein 2017 S. Klein, IoT Solutions in Microsoft s Azure IoT Suite, DOI /

Index. Scott Klein 2017 S. Klein, IoT Solutions in Microsoft s Azure IoT Suite, DOI / Index A Advanced Message Queueing Protocol (AMQP), 44 Analytics, 9 Apache Ambari project, 209 210 API key, 244 Application data, 4 Azure Active Directory (AAD), 91, 257 Azure Blob Storage, 191 Azure data

More information

Building Self-Service BI Solutions with Power Query. Written By: Devin

Building Self-Service BI Solutions with Power Query. Written By: Devin Building Self-Service BI Solutions with Power Query Written By: Devin Knight DKnight@PragmaticWorks.com @Knight_Devin CONTENTS PAGE 3 PAGE 4 PAGE 5 PAGE 6 PAGE 7 PAGE 8 PAGE 9 PAGE 11 PAGE 17 PAGE 20 PAGE

More information

Formatting the Question Text and Adding Images, Media Objects, Tables etc.

Formatting the Question Text and Adding Images, Media Objects, Tables etc. Formatting the Question Text and Adding Images, Media Objects, Tables etc. Formatting the Text (Bold, Italics, Underline, and Super/Subscript) Highlight the text you want to modify and click the appropriate

More information

Distributed Time Travel for Feature Generation. Prasanna Padmanabhan DB Tsai Mohammad H. Taghavi

Distributed Time Travel for Feature Generation. Prasanna Padmanabhan DB Tsai Mohammad H. Taghavi Distributed Time Travel for Feature Generation Prasanna Padmanabhan DB Tsai Mohammad H. Taghavi Turn on Netflix, and the absolute best content for you would automatically start playing Everything is a

More information

User Guide. Data Preparation R-1.0

User Guide. Data Preparation R-1.0 User Guide Data Preparation R-1.0 Contents 1. About this Guide... 4 1.1. Document History... 4 1.2. Overview... 4 1.3. Target Audience... 4 2. Introduction... 4 2.1. Introducing the Big Data BizViz Data

More information

The Explorer. chapter Getting started

The Explorer. chapter Getting started chapter 10 The Explorer Weka s main graphical user interface, the Explorer, gives access to all its facilities using menu selection and form filling. It is illustrated in Figure 10.1. There are six different

More information

WEKA Explorer User Guide for Version 3-4

WEKA Explorer User Guide for Version 3-4 WEKA Explorer User Guide for Version 3-4 Richard Kirkby Eibe Frank July 28, 2010 c 2002-2010 University of Waikato This guide is licensed under the GNU General Public License version 2. More information

More information

Adding Links. Links convey credibility and help with search engine optimization.

Adding Links. Links convey credibility and help with search engine optimization. A STEP-BY-STEP A STEP-BY-STEP GUIDE GUIDE TO UPDATING TO ADDING NAVIGATION LINKS Adding Links Links convey credibility and help with search engine optimization. Include links to your industry connections,

More information

Lecture 25: Review I

Lecture 25: Review I Lecture 25: Review I Reading: Up to chapter 5 in ISLR. STATS 202: Data mining and analysis Jonathan Taylor 1 / 18 Unsupervised learning In unsupervised learning, all the variables are on equal standing,

More information

Data Resource Centre, University of Guelph CREATING AND EDITING CHARTS. From the menus choose: Graphs Chart Builder... 20/11/ :06:00 PM Page 1

Data Resource Centre, University of Guelph CREATING AND EDITING CHARTS. From the menus choose: Graphs Chart Builder... 20/11/ :06:00 PM Page 1 From the menus choose: Graphs Chart Builder... 20/11/2009 12:06:00 PM Page 1 The Chart Builder dialog box is an interactive window that allows you to preview how a chart will look while you build it. 20/11/2009

More information

Lab 5: Reporting with RPE

Lab 5: Reporting with RPE Lab 5: Reporting with RPE Objectives After completing this lab, you will be able to: Report on Rhapsody Models and Linked Requirements using Rational Publishing Engine Scenario In this Lab, you will first

More information

The UBot Studio SCRIPT REFERENCE. The Qualifier Functions

The UBot Studio SCRIPT REFERENCE. The Qualifier Functions The UBot Studio SCRIPT REFERENCE The Qualifier Functions This section of Functions has not changed much from the earlier v3.5 qualifier functions, however, there are a couple of notable changes that will

More information

User Guide. Data Preparation R-1.1

User Guide. Data Preparation R-1.1 User Guide Data Preparation R-1.1 Contents 1. About this Guide... 4 1.1. Document History... 4 1.2. Overview... 4 1.3. Target Audience... 4 2. Introduction... 4 2.1. Introducing the Big Data BizViz Data

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

More information

DATA ANALYTICS ON AMAZON PRODUCT REVIEW USING NOSQL HIVE AND MACHINE LEARNING ON SPARKS ON HADOOP FILE SYSTEM.

DATA ANALYTICS ON AMAZON PRODUCT REVIEW USING NOSQL HIVE AND MACHINE LEARNING ON SPARKS ON HADOOP FILE SYSTEM. DATA ANALYTICS ON AMAZON PRODUCT REVIEW USING NOSQL HIVE AND MACHINE LEARNING ON SPARKS ON HADOOP FILE SYSTEM. PRESENTED BY: DEVANG PATEL (2671221) SONAL DESHMUKH (2622863) INTRODUCTION: The significance

More information

Enterprise Miner Version 4.0. Changes and Enhancements

Enterprise Miner Version 4.0. Changes and Enhancements Enterprise Miner Version 4.0 Changes and Enhancements Table of Contents General Information.................................................................. 1 Upgrading Previous Version Enterprise Miner

More information

1 Topic. Image classification using Knime.

1 Topic. Image classification using Knime. 1 Topic Image classification using Knime. The aim of image mining is to extract valuable knowledge from image data. In the context of supervised image classification, we want to assign automatically a

More information

MACHINE LEARNING TOOLBOX. Logistic regression on Sonar

MACHINE LEARNING TOOLBOX. Logistic regression on Sonar MACHINE LEARNING TOOLBOX Logistic regression on Sonar Classification models Categorical (i.e. qualitative) target variable Example: will a loan default? Still a form of supervised learning Use a train/test

More information

Iconasys Advanced 360 Product View Creator. User Guide (Mac OSX)

Iconasys Advanced 360 Product View Creator. User Guide (Mac OSX) Iconasys Advanced 360 Product View Creator User Guide (Mac OSX) Overview 360 Product View Creator UI 1. Upload Image Area 2. Image Viewing Gallery 3. Output Format and Button Create 4. 360 Preview Window

More information

Microsoft Analyzing and Visualizing Data with Power BI.

Microsoft Analyzing and Visualizing Data with Power BI. Microsoft 70-778 Analyzing and Visualizing Data with Power BI http://killexams.com/pass4sure/exam-detail/70-778 QUESTION: 52 You have a Power BI report in an app workspace. You plan to embed a report from

More information

Lab 5: Reporting with RPE

Lab 5: Reporting with RPE Objectives After completing this lab, you will be able to: Report on Rhapsody Models and Linked OSLC Artifacts using Rational Publishing Engine Scenario In this Lab, you will first start the Rhapsody REST

More information

SAS Factory Miner 14.2: User s Guide

SAS Factory Miner 14.2: User s Guide SAS Factory Miner 14.2: User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2016. SAS Factory Miner 14.2: User s Guide. Cary, NC: SAS Institute

More information

NEW FEATURES OF ENTERPRISE GUIDE 6.1 MATT MALCZEWSKI, SAS CANADA

NEW FEATURES OF ENTERPRISE GUIDE 6.1 MATT MALCZEWSKI, SAS CANADA NEW FEATURES OF ENTERPRISE GUIDE 6.1 MATT MALCZEWSKI, SAS CANADA AGENDA NEW FEATURES FOR General Users SAS Programmers Data Analysts Miscellaneous New Tasks FYI Enterprise Guide 6.1 is compatible with

More information

RISKMAN QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS

RISKMAN QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS Introduction This reference guide is aimed at RiskMan Administrators who will be responsible for maintaining your RiskMan system configuration and also to use some of the System Tools that are available

More information

QRG: Adding Images, Files and Links in the WYSIWYG Editor

QRG: Adding Images, Files and Links in the WYSIWYG Editor QRG: Adding Images, Files and Links in the WYSIWYG Editor QRG: Adding Images, Files and Links in the WYSIWYG Editor... 1 Image Optimisation for Web use:... 2 Add an Image... 2 Linking to a File... 4 Adding

More information

Slice Intelligence!

Slice Intelligence! Intern @ Slice Intelligence! Wei1an(Wu( September(8,(2014( Outline!! Details about the job!! Skills required and learned!! My thoughts regarding the internship! About the company!! Slice, which we call

More information

Evaluation Metrics. (Classifiers) CS229 Section Anand Avati

Evaluation Metrics. (Classifiers) CS229 Section Anand Avati Evaluation Metrics (Classifiers) CS Section Anand Avati Topics Why? Binary classifiers Metrics Rank view Thresholding Confusion Matrix Point metrics: Accuracy, Precision, Recall / Sensitivity, Specificity,

More information

Content Analysis for Workshop Smart Builder e-learning Authoring Tool By: Smruti Shah Roll No. 9 MA-ET

Content Analysis for Workshop Smart Builder e-learning Authoring Tool By: Smruti Shah Roll No. 9 MA-ET Content Analysis for Workshop Smart Builder e-learning Authoring Tool By: Smruti Shah Roll No. 9 MA-ET Content Outline 1. Introduction 2. Smart Builder 3. Example Parts of Brain 4. Features and Actions

More information

Using Machine Learning to Identify Security Issues in Open-Source Libraries. Asankhaya Sharma Yaqin Zhou SourceClear

Using Machine Learning to Identify Security Issues in Open-Source Libraries. Asankhaya Sharma Yaqin Zhou SourceClear Using Machine Learning to Identify Security Issues in Open-Source Libraries Asankhaya Sharma Yaqin Zhou SourceClear Outline - Overview of problem space Unidentified security issues How Machine Learning

More information

SAS Model Manager 15.1: Quick Start Tutorial

SAS Model Manager 15.1: Quick Start Tutorial SAS Model Manager 15.1: Quick Start Tutorial Overview This Quick Start Tutorial is an introduction to some of the primary features of SAS Model Manager. The tutorial covers basic tasks that are related

More information

REFRESHER TRAINING OF FOCAL POINTS ON THE

REFRESHER TRAINING OF FOCAL POINTS ON THE CountrySTAT / FENIX Overview of the DSD editor in the new CountrySTAT platform REFRESHER TRAINING OF FOCAL POINTS ON THE CountrySTAT/FENIX SYSTEM 24 28 July 2016 ECO Secretariat, Teheran, Iran Stefania

More information

Short instructions on using Weka

Short instructions on using Weka Short instructions on using Weka G. Marcou 1 Weka is a free open source data mining software, based on a Java data mining library. Free alternatives to Weka exist as for instance R and Orange. The current

More information

Create a Questionnaire. Triangle

Create a Questionnaire. Triangle Create a Questionnaire Triangle 1. Access EyeQuestion Open your browser (e.g. Internet Explorer) Browse to your EyeQuestion server The login screen will be visible 2. Login Login with your credentials

More information

S2 Text. Instructions to replicate classification results.

S2 Text. Instructions to replicate classification results. S2 Text. Instructions to replicate classification results. Machine Learning (ML) Models were implemented using WEKA software Version 3.8. The software can be free downloaded at this link: http://www.cs.waikato.ac.nz/ml/weka/downloading.html.

More information

mltool Documentation Release Maurizio Sambati

mltool Documentation Release Maurizio Sambati mltool Documentation Release 0.5.1 Maurizio Sambati November 18, 2015 Contents 1 Overview 3 1.1 Features.................................................. 3 1.2 Installation................................................

More information

CS4491/CS 7265 BIG DATA ANALYTICS

CS4491/CS 7265 BIG DATA ANALYTICS CS4491/CS 7265 BIG DATA ANALYTICS EVALUATION * Some contents are adapted from Dr. Hung Huang and Dr. Chengkai Li at UT Arlington Dr. Mingon Kang Computer Science, Kennesaw State University Evaluation for

More information

Andrea Martorana Tusa. Failure prediction for manifacturing industry

Andrea Martorana Tusa. Failure prediction for manifacturing industry Andrea Martorana Tusa Failure prediction for manifacturing industry Event Sponsors Expo Sponsors Expo Light Sponsors Speaker Info First name: Andrea. Last name: Martorana Tusa. Italian, working by Widex

More information

MicroStrategy Academic Program

MicroStrategy Academic Program MicroStrategy Academic Program Creating a center of excellence for enterprise analytics and mobility. GEOSPATIAL ANALYTICS: HOW TO VISUALIZE GEOSPATIAL DATA ON MAPS AND CUSTOM SHAPE FILES APPROXIMATE TIME

More information

Asanka Padmakumara. ETL 2.0: Data Engineering with Azure Databricks

Asanka Padmakumara. ETL 2.0: Data Engineering with Azure Databricks Asanka Padmakumara ETL 2.0: Data Engineering with Azure Databricks Who am I? Asanka Padmakumara Business Intelligence Consultant, More than 8 years in BI and Data Warehousing A regular speaker in data

More information

MicroStrategy Analytics Desktop

MicroStrategy Analytics Desktop MicroStrategy Analytics Desktop Quick Start Guide MicroStrategy Analytics Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT.

More information

Blackboard QuickStart Guide for Students

Blackboard QuickStart Guide for Students Blackboard QuickStart Guide for Students This QuickStart guide will walk you through the process of logging in to Blackboard and submitting your work. If you do not know your login information for Blackboard,

More information

Published on Online Documentation for Altium Products (http://www.altium.com/documentation)

Published on Online Documentation for Altium Products (http://www.altium.com/documentation) Published on Online Documentation for Altium Products (http://www.altium.com/documentation) Home > PCB Pad Via Templates A New Era for Documentation Modified on Apr 11, 2017 Parent page: PCB Panels The

More information

Drill Table. Summary. Availability. Modified by on 19-Nov Parent page: Objects

Drill Table. Summary. Availability. Modified by on 19-Nov Parent page: Objects Drill Table Old Content - visit altium.com/documentation Modified by on 19-Nov-2013 Parent page: Objects The Drill Table presents a live summary of all drill holes present in the board. Summary A standard

More information

BULK EDITING DASHBOARD ON O365

BULK EDITING DASHBOARD ON O365 BULK EDITING DASHBOARD ON O365 A business intelligence dashboard is a data visualization tool that displays the current status of metrics and key performance indicators for a business, department, or specific

More information

FastStats Integration

FastStats Integration Guide Improving results together 1 Contents Introduction... 2 How a campaign is conducted... 3-5 Configuring the integration with PureResponse... 4-17 Using Cascade with the PureResponse platform... 17-10

More information

Dynamics 365 for BPO Dynamics 365 for BPO

Dynamics 365 for BPO Dynamics 365 for BPO Dynamics 365 for BPO The Solution is designed to address most of the day to day process functionalities in case management of D365 MICROSOFT LABS 1 Table of Contents 1. Overview... 4 2. How to Verify the

More information

Evaluating Classifiers

Evaluating Classifiers Evaluating Classifiers Reading for this topic: T. Fawcett, An introduction to ROC analysis, Sections 1-4, 7 (linked from class website) Evaluating Classifiers What we want: Classifier that best predicts

More information

Logistic Regression: Probabilistic Interpretation

Logistic Regression: Probabilistic Interpretation Logistic Regression: Probabilistic Interpretation Approximate 0/1 Loss Logistic Regression Adaboost (z) SVM Solution: Approximate 0/1 loss with convex loss ( surrogate loss) 0-1 z = y w x SVM (hinge),

More information

SAS Visual Analytics 7.2, 7.3, and 7.4: Getting Started with Analytical Models

SAS Visual Analytics 7.2, 7.3, and 7.4: Getting Started with Analytical Models SAS Visual Analytics 7.2, 7.3, and 7.4: Getting Started with Analytical Models SAS Documentation August 16, 2017 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015.

More information

SAS E-MINER: AN OVERVIEW

SAS E-MINER: AN OVERVIEW SAS E-MINER: AN OVERVIEW Samir Farooqi, R.S. Tomar and R.K. Saini I.A.S.R.I., Library Avenue, Pusa, New Delhi 110 012 Samir@iasri.res.in; tomar@iasri.res.in; saini@iasri.res.in Introduction SAS Enterprise

More information

Dreamweaver MX The Basics

Dreamweaver MX The Basics Chapter 1 Dreamweaver MX 2004 - The Basics COPYRIGHTED MATERIAL Welcome to Dreamweaver MX 2004! Dreamweaver is a powerful Web page creation program created by Macromedia. It s included in the Macromedia

More information

New website Training:

New website Training: New website Training: Table of Contents 1. Logging in and out of the new site. 2. Edit Content a. How to edit content b. Paragraph types c. Adding links d. Adding an image e. Adding a document f. Saving

More information

Recitation Supplement: Creating a Neural Network for Classification SAS EM December 2, 2002

Recitation Supplement: Creating a Neural Network for Classification SAS EM December 2, 2002 Recitation Supplement: Creating a Neural Network for Classification SAS EM December 2, 2002 Introduction Neural networks are flexible nonlinear models that can be used for regression and classification

More information

To start Kidspiration on a Macintosh: Open the Kidspiration 3 folder and double-click the Kidspiration icon.

To start Kidspiration on a Macintosh: Open the Kidspiration 3 folder and double-click the Kidspiration icon. Tutorial Six: Using steps to show progression of work The Step Workspace allows students to show and explain each step as they progress through a math project. Because their work is preserved and duplicated

More information

Lecture 27: Review. Reading: All chapters in ISLR. STATS 202: Data mining and analysis. December 6, 2017

Lecture 27: Review. Reading: All chapters in ISLR. STATS 202: Data mining and analysis. December 6, 2017 Lecture 27: Review Reading: All chapters in ISLR. STATS 202: Data mining and analysis December 6, 2017 1 / 16 Final exam: Announcements Tuesday, December 12, 8:30-11:30 am, in the following rooms: Last

More information

Websites. Version 1.7

Websites. Version 1.7 Websites Version 1.7 Last edited 15 Contents MyNetball Information...3 Websites...4 Web packages...4 Setting up the layout...5 Uploading files and images...6 Using Dropbox to Increase your Website Data...7

More information

SAS Model Manager 2.2. Tutorials

SAS Model Manager 2.2. Tutorials SAS Model Manager 2.2 Tutorials The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS Model Manager 2.2: Tutorials. Cary, NC: SAS Institute Inc. SAS Model Manager

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Working with Query Objects Intellicus Enterprise Reporting and BI Platform ` Intellicus Technologies info@intellicus.com www.intellicus.com Working with Query Objects i Copyright 2012 Intellicus Technologies

More information

Customer Support Guide Creating a custom Headcount Dashboard

Customer Support Guide Creating a custom Headcount Dashboard Customer Support Guide Creating a custom Headcount Dashboard Contents Purpose... 2 Rationale... 2 Step by Step Instruction... 3 Related Documentation... 11 Package Version Date HCM 16.01 02/02/2017 HCM

More information

Converting categorical data into numbers with Pandas and Scikit-learn -...

Converting categorical data into numbers with Pandas and Scikit-learn -... 1 of 6 11/17/2016 11:02 AM FastML Machine learning made easy RSS Home Contents Popular Links Backgrounds About Converting categorical data into numbers with Pandas and Scikit-learn 2014-04-30 Many machine

More information

ADOBE Dreamweaver CS3 Basics

ADOBE Dreamweaver CS3 Basics ADOBE Dreamweaver CS3 Basics IT Center Training Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu This page intentionally left blank 2 8/16/2011 Contents Before you start with Dreamweaver....

More information

SQream Dashboard Version SQream Technologies

SQream Dashboard Version SQream Technologies SQream Dashboard Version 1.1.0 SQream Technologies 2018-11-06 Table of Contents Overview................................................................................... 1 1. The SQream Dashboard...................................................................

More information

The Allure of Machine Learning, now within Reach in Microsoft Azure

The Allure of Machine Learning, now within Reach in Microsoft Azure A Mariner White Paper The Allure of Machine Learning, now within Reach in Microsoft Azure Or Why AzureML is Better for Data Mining than Excel By Colby Ford, Associate Data Analytics Consultant 2719 Coltsgate

More information

Crossing the AI Chasm. What We Learned from building Apache PredictionIO (incubating)

Crossing the AI Chasm. What We Learned from building Apache PredictionIO (incubating) Crossing the AI Chasm What We Learned from building Apache PredictionIO (incubating) Simon Chan Sr. Director, Product Management, Salesforce Co-founder, PredictionIO PhD, University College London simon@salesforce.com

More information

What's New in MATLAB for Engineering Data Analytics?

What's New in MATLAB for Engineering Data Analytics? What's New in MATLAB for Engineering Data Analytics? Will Wilson Application Engineer MathWorks, Inc. 2017 The MathWorks, Inc. 1 Agenda Data Types Tall Arrays for Big Data Machine Learning (for Everyone)

More information

Data Science Training

Data Science Training Data Science Training R, Predictive Modeling, Machine Learning, Python, Bigdata & Spark 9886760678 Introduction: This is a comprehensive course which builds on the knowledge and experience a business analyst

More information

Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1. User Guide

Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1. User Guide Informatica PowerExchange for Microsoft Azure Blob Storage 10.2 HotFix 1 User Guide Informatica PowerExchange for Microsoft Azure Blob Storage User Guide 10.2 HotFix 1 July 2018 Copyright Informatica LLC

More information

Somerville College WordPress user manual. 7th October 2015

Somerville College WordPress user manual. 7th October 2015 Somerville College WordPress user manual 7th October 05 0 INDEX YOUR SITE IMAGES FORMS THE MENU 4 4 5 0 YOUR SITE The Content Management System The Somerville website has been built using the WordPress

More information

Submitting Assignments

Submitting Assignments Submitting Assignments Blackboard s assignments feature allows the instructor to assign coursework for you to submit electronically. First, you need to locate the assignment. Your instructor will place

More information

Dreamweaver Template Tutorial - How to create a website from a template

Dreamweaver Template Tutorial - How to create a website from a template Dreamweaver Template Tutorial - How to create a website from a template In this tutorial you will create a website using Dreamweaver s premade templates. You are going to learn how to style them using

More information

Package gbts. February 27, 2017

Package gbts. February 27, 2017 Type Package Package gbts February 27, 2017 Title Hyperparameter Search for Gradient Boosted Trees Version 1.2.0 Date 2017-02-26 Author Waley W. J. Liang Maintainer Waley W. J. Liang

More information

FactoryStudio Setup. The purpose of this document is to describe how to set up FactoryStudio for XLReporter.

FactoryStudio Setup. The purpose of this document is to describe how to set up FactoryStudio for XLReporter. FactoryStudio Setup Reporting from FactoryStudio XLReporter generates Excel based reports from Tatsoft s FactoryStudio using current process values, historical logs and alarm archives. The purpose of this

More information

MIT Samberg Center Cambridge, MA, USA. May 30 th June 2 nd, by C. Rea, R.S. Granetz MIT Plasma Science and Fusion Center, Cambridge, MA, USA

MIT Samberg Center Cambridge, MA, USA. May 30 th June 2 nd, by C. Rea, R.S. Granetz MIT Plasma Science and Fusion Center, Cambridge, MA, USA Exploratory Machine Learning studies for disruption prediction on DIII-D by C. Rea, R.S. Granetz MIT Plasma Science and Fusion Center, Cambridge, MA, USA Presented at the 2 nd IAEA Technical Meeting on

More information

Release notes for version 3.7.1

Release notes for version 3.7.1 Release notes for version 3.7.1 Important! Create a backup copy of your projects before updating to the new version. Projects saved in the new version can t be opened in versions earlier than 3.7. What

More information

Data Mining: STATISTICA

Data Mining: STATISTICA Outline Data Mining: STATISTICA Prepare the data Classification and regression (C & R, ANN) Clustering Association rules Graphic user interface Prepare the Data Statistica can read from Excel,.txt and

More information

2/26/2017. Spark MLlib is the Spark component providing the machine learning/data mining algorithms. MLlib APIs are divided into two packages:

2/26/2017. Spark MLlib is the Spark component providing the machine learning/data mining algorithms. MLlib APIs are divided into two packages: Spark MLlib is the Spark component providing the machine learning/data mining algorithms Pre-processing techniques Classification (supervised learning) Clustering (unsupervised learning) Itemset mining

More information

QuickStart Guide for Students

QuickStart Guide for Students Once you have registered your Chalk & Wire account or received your User ID and Password, go to the Chalk & Wire login web page for your institution. If you do not know the correct URL, please visit ep.chalkandwire.com

More information

MicroStrategy Academic Program

MicroStrategy Academic Program MicroStrategy Academic Program Creating a center of excellence for enterprise analytics and mobility. DATA PREPARATION: HOW TO WRANGLE, ENRICH, AND PROFILE DATA APPROXIMATE TIME NEEDED: 1 HOUR TABLE OF

More information

MIPE: Model Informing Probability of Eradication of non-indigenous aquatic species. User Manual. Version 2.4

MIPE: Model Informing Probability of Eradication of non-indigenous aquatic species. User Manual. Version 2.4 MIPE: Model Informing Probability of Eradication of non-indigenous aquatic species User Manual Version 2.4 March 2014 1 Table of content Introduction 3 Installation 3 Using MIPE 3 Case study data 3 Input

More information

Copyright 2018 by KNIME Press

Copyright 2018 by KNIME Press 2 Copyright 2018 by KNIME Press All rights reserved. This publication is protected by copyright, and permission must be obtained from the publisher prior to any prohibited reproduction, storage in a retrieval

More information

USING ALTERYX DESIGNER FOR PREDICTIVE ANALYSIS JUNE 2017

USING ALTERYX DESIGNER FOR PREDICTIVE ANALYSIS JUNE 2017 USING ALTERYX DESIGNER FOR PREDICTIVE ANALYSIS JUNE 2017 In the following exercise, you learn how to use Alteryx Designer for predictive analysis. This exercise assumes that you installed Alteryx Designer.

More information

Machine Learning in Python. Rohith Mohan GradQuant Spring 2018

Machine Learning in Python. Rohith Mohan GradQuant Spring 2018 Machine Learning in Python Rohith Mohan GradQuant Spring 2018 What is Machine Learning? https://twitter.com/myusuf3/status/995425049170489344 Traditional Programming Data Computer Program Output Getting

More information

New features in MediaBank 3.1p1

New features in MediaBank 3.1p1 New features in MediaBank 3.1p1 Place Holders You can create Place Holders to represent elements that do not have physical assets attached to them. This makes it easier to track and work with assets before

More information

Analytics and Visualization

Analytics and Visualization GU I DE NO. 4 Analytics and Visualization AWS IoT Analytics Mini-User Guide Introduction As IoT applications scale, so does the data generated from these various IoT devices. This data is raw, unstructured,

More information

BASICS OF SPATIAL MODELER etraining

BASICS OF SPATIAL MODELER etraining Introduction BASICS OF SPATIAL MODELER etraining Describes the Spatial Modeler workspace and functions and shows how to run Spatial Models. Software Data Spatial Modeler N/A Transcript 0:10 Thank you for

More information

Introduction & Navigation

Introduction & Navigation Introduction & Navigation Logging In to Marketing Cloud 1. Open a tab in either the Chrome or Firefox web browser. 2. Place your cursor in the URL bar then type mc.exacttarget.com. 3. Strike the Enter

More information