ALL Flashcards

1
Q

What is MAE metric?

A
  • Mean absolute error is an average absolute difference between the target and predicted values.
  • It measures the average magnitude of the errors, the difference between a target and predicted value and a set of predictions.
  • a smaller value indicates a higher-quality model.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is MAPE metric?

A
  • Mean absolute percentage error is the average absolute percentage difference between the labels and the predicted values.
  • This metric ranges between zero and infinity
  • a lower value indicates a higher-quality model.
  • MAPE is not shown if the target column contains any zero values, in this case MAPE is undefined.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is RMSE metric?

A
  • root mean squared error
  • RMSE is more sensitive to outliers than MAE
  • a smaller value indicates a higher-quality model, zero represents a perfect predictor
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is R squared metric?

A
  • is the square of the Pearson correlation coefficient between the observed and predicted values
  • ranges from zero to one, where a higher value indicates a higher-quality model
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is RMSLE metric?

A
  • root mean squared logarithmic error metric is similar to RMSE except that it uses the natural logarithm of the predicted and actual values plus one.
  • metric ranges from zero to infinity, a lower value indicates a higher-quality model
  • penalizes under-prediction more heavily than over-prediction.
  • a good metric when you don’t want to penalize differences for large prediction values more heavily than for small prediction values.
  • is returned only if all labeled and predicted values are non-negative.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Why is it important to review how much each feature impacts a model?

A

Review this information to ensure that all the most important features make sense for your data and business problem.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is Log loss?

A

Log loss, this is the cross-entropy between the model predictions and the target values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

When is Batch prediction used?

A

Batch prediction is useful for making many prediction requests at once.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

When are predicted values available in Batch prediction?

A

Batch prediction is asynchronous, meaning that the model will wait until it processes all of the prediction requests before returning a CSV file or a BigQuery Table with prediction values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

When a model deployment is needed?

A

Deploy your model to make it available for online or real-time predictions.
- Predictions are available through requests using a REST API.
- Online prediction is synchronous or real-time, meaning the model only accepts one prediction request per API call.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are data requirements for Vertex AI AutoML?

A
  • maximum data set size is 100 gigabytes
  • the minimum row requirement is 1,000.
  • the target column must be categorical or numerical.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is Google BigQuery ML?

A

Google BigQuery ML is a set of SQL extensions to support machine learning.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are the advantages of BigQuery ML?

A
  • an easy to use way to invoke machine learning models on structured data using just SQL
  • can provide decision-making guidance through predictive analytics
  • speeds up the time to production,
  • makes development work much easier,
  • automates a number of the steps in the ML workflow.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Which model types in BigQuery ML have hyperparameter tuning?

A

Hyperparameter tuning supports the following model types:
- linear regression,
- logistic regression,
- K means,
- matrix factorization,
- boosted tree classifier,
- boosted tree regressor,
- DNN classifier
- DNN regressor.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is TensorFlow Playground?

A

TensorFlow Playground is a powerful tool for visualizing how neural networks work.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly