Intro to Machine Learning - Financial Technology

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/15

flashcard set

Earn XP

Description and Tags

Flashcards reviewing key concepts from the Intro to Machine Learning - Financial Technology lecture.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

What is artificial intelligence?

The simulation of any intellectual task.

2
New cards

What are the two main purposes for performing data analysis?

Inference and Prediction.

3
New cards

What is the difference between inference and prediction?

Inference seeks to find causal effects while prediction uses inputs to predict outcomes.

4
New cards

What are the two types of learning in machine learning?

Supervised learning and Unsupervised learning.

5
New cards

What is a classification problem?

A problem where the outcome variable is discrete and the goal is to predict categories.

6
New cards

What is a regression problem?

A problem where the outcome variable is continuous and the goal is to predict numeric values.

7
New cards

What statistical tool is considered the gold standard for inference?

Randomized control trials (RCT).

8
New cards

What does MSE stand for and how is it calculated?

Mean Square Error; it measures the average squared difference between actual and predicted outcomes.

9
New cards

What is a confusion matrix?

A table used to evaluate the performance of a classification model, showing true and false positives/negatives.

10
New cards

What is precision in terms of model accuracy?

The ratio of true positives to the sum of true positives and false positives.

11
New cards

What is the True Positive Rate (TPR)?

The ratio of true positives to the sum of true positives and false negatives, also known as recall.

12
New cards

What does the F1 score represent?

The harmonic mean of precision and recall, balancing the trade-off between the two.

13
New cards

What is the ROC curve used for?

To plot the True Positive Rate against the False Positive Rate for different threshold settings.

14
New cards

What is overfitting in machine learning?

When a model is too complex and fits too closely to a limited set of data points, reducing its ability to predict on new data.

15
New cards

How can we check for overfitting when building models?

Using techniques like cross-validation, including Holdout Method and K-Fold Cross Validation.

16
New cards

What is the bias-variance tradeoff?

The balance between a model's ability to minimize bias (error due to erroneous assumptions) and variance (error due to sensitivity to small fluctuations in training set).