Lesson 4: Machine Learning Flashcards
Accuracy (classification)
A measure which is defined as the number of correct predictions divided by the total number of predictions.
Area Under the Curve
the percentage of area underneath the ROC curve. This is a measure of how accurate the two-class model is, with numbers closer to 1 being better.
Azure Machine Learning Studio
The integrated development environment (IDE) for Azure Machine Learning.
Compute (Azure ML)
Virtual machine resources which are dedicated to performing tasks in Azure Machine Learning. Compute may include individual virtual machines (VMs), typically configured as data science VMs, or it may include a cluster of VMs intended for training and inference pipeline executions.
Confusion matrix:
A table representing predicted versus actual values for a classification problem. A classic two-class confusion matrix has four boxes. Using “Yes” and “No” as the two classes, these four boxes are:
How many types of values are there in a confusion matrix?
four
Name the four confusion matrix types
True Positive: we predicted Yes correctly
False Positive: we predicted Yes but it was really No
False Negative: we predicted No but it was really Yes
True Negative: we predicted No correctly
True Positive
from the confusion matrix: we predicted Yes correctly
False Positive
from the confusion matrix: we predicted Yes but it was really No
False Negative
from the confusion matrix: we predicted No but it was really Yes
True Negative
from the confusion matrix: we predicted No correctly
Data Labeling
This functionality allows you to label images as part of an image classification project.
Experiment (Azure ML)
A collection of trials used to validate a user’s hypothesis. An experiment may contain multiple runs of pipelines.
Feature
Inputs which help us understand what affects the label.
Feature engineering
Creating new features from existing data. This might include calculating new features, translating a street address into latitude and longitude, or parsing passages of text for meaning.