Reading 4 Big Data Projects - Answers
Reading 4 Big Data Projects - Answers
Explanation
Curation is ensuring the quality of data, for example by adjusting for bad or missing data.
Word clouds are a visualization technique. Moving data from a storage medium to where
they are needed is referred to as transfer.
Freja Karlsson is a bond analyst with Storbank AB. Over the past several months, Karlsson
has been working to develop her own machine learning (ML) model that she plans to use to
predict default of the various bonds that she covers. The inputs to the model are various
pieces of financial data that Karlsson has compiled from multiple sources.
After Karlsson has constructed the model using her knowledge of appropriate variables,
Karlsson runs the model on the training set. Each firm's bonds are classified as predicted- to-
default or predicted-not-to-default. When Karlsson's model predicts that a bond will default
and the bond actually defaults, Karlsson considers this to be a true positive. Karlsson then
evaluates the performance of her model using error analysis. The confusion matrix that
results is shown in Exhibit 1.
No Default 23 113
Question #2 - 5 of 11 Question ID: 1472240
A) 81%.
B) 91%.
C) 71%.
Explanation
Precision, the ratio of correctly predicted positive classes (true positives) to all predicted
positive classes, is calculated as:
In the context of this default classification, high precision would help us avoid the situation
where a bond is incorrectly predicted to default when it actually is not going to default.
Karlsson is especially concerned about the possibility that her model may indicate that a
bond will not default, but then the bond actually defaults. Karlsson decides to use the
model's recall to evaluate this possibility. Based on the data in Exhibit 1, the model's recall is
closest to:
A) 93%.
B) 83%.
C) 73%.
Explanation
Recall is useful when the cost of a false negative is high, such as when we predict that a
bond will not default but it actually will. In cases like this, high recall indicates that false
negatives will be minimized.
Karlsson would like to gain a sense of her model's overall performance. In her research,
Karlsson learns about the F1 score, which she hopes will provide a useful measure. Based on
Exhibit 1, Karlsson's model's F1 score is closest to:
A) 82%.
B) 92%.
C) 72%.
Explanation
The model's F1 score, which is the harmonic mean of precision and recall, is calculated as:
Like accuracy, F1 is a measure of overall performance measures that gives equal weight to
FP and FN.
Karlsson also learns of the model measure of accuracy. Based on Exhibit 1, Karlsson's
model's accuracy metric is closest to:
A) 79%.
B) 89%.
C) 69%.
Explanation
The model's accuracy is the percentage of correctly predicted classes out of total
predictions. Model accuracy is calculated as:
A) veracity.
B) velocity.
C) variety.
Explanation
Big data is defined as data with high volume, velocity, and variety. Big data often suffers
from low veracity, because it can contain a high percentage of meaningless data.
A) feature design.
B) feature engineering.
C) feature selection.
Explanation
Data exploration encompasses exploratory data analysis, feature selection, and feature
engineering.
Explanation
Underfitting describes a machine learning model that is not complex enough to describe
the data it is meant to analyze. An underfit model treats true parameters as noise and fails
to identify the actual patterns and relationships. A model that is overfit (too complex) will
tend to identify spurious relationships in the data. Labelling of input data is related to the
use of supervised or unsupervised machine learning techniques.
The process of splitting a given text into separate words is best characterized as:
A) stemming.
B) tokenization.
C) bag-of-words.
Explanation
An executive describes her company's "low latency, multiple terabyte" requirements for
managing Big Data. To which characteristics of Big Data is the executive referring?
Explanation
Big Data may be characterized by its volume (the amount of data available), velocity (the
speed at which data are communicated), and variety (degrees of structure in which data
exist). "Terabyte" is a measure of volume. "Latency" refers to velocity.
When evaluating the fit of a machine learning algorithm, it is most accurate to state that:
Explanation
Recall (also called sensitivity) is the ratio of correctly predicted positive classes to all actual
positive classes. Precision is the ratio of correctly predicted positive classes to all predicted
positive classes. Accuracy is the percentage of correctly predicted classes out of total
predictions.