SEIS 763 Machine Learning - Vocabulary Flashcards (Fall 2025)

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

1/23

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering key machine learning concepts from Lecture 1 notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

24 Terms

1
New cards

Machine Learning

Field that builds computational systems that learn from data and adapt to it; used across domains such as engineering, medicine, finance, and commerce.

2
New cards

Supervised Learning

ML approach that learns from labeled data to predict outputs or labels.

3
New cards

Unsupervised Learning

ML approach that discovers structure or patterns from unlabeled data (e.g., clustering, dimensionality reduction).

4
New cards

Features

Input variables used by a model to make predictions.

5
New cards

Label

Ground-truth target that the model aims to predict.

6
New cards

Model

The predictive function that maps input features to outputs.

7
New cards

Weights

Parameters that quantify each feature's contribution; in linear models, weights capture discriminative power.

8
New cards

Bias

Intercept term added to the weighted sum in linear models.

9
New cards

Loss Function

Function that measures how far predictions are from true labels.

10
New cards

Mean Squared Error (MSE)

Loss defined as the average of squared differences between predicted and true values.

11
New cards

Optimizer

Algorithm that updates model parameters to minimize the loss (direction of movement in parameter space).

12
New cards

Linear Model

Model where output is a weighted sum of inputs plus a bias: y = W^T x + b.

13
New cards

y_hat (Predicted)

The predicted label or value produced by the model.

14
New cards

y (True Label)

The ground-truth value the model tries to predict.

15
New cards

y = W^T x + b

Equation representing a linear regression model.

16
New cards

General Form yi = W^T xi + b

Linear regression equation for the i-th sample with input x_i.

17
New cards

Standard Data Pipeline

Common ML workflow: data collection, labeling, preparation, model building/training, evaluation, deployment.

18
New cards

Features Matrix X

Collection of input features organized as a matrix used by the model.

19
New cards

Neural Network

ML model that mimics the brain with interconnected artificial neurons, learning by adjusting connections.

20
New cards

Perceptron

The first artificial neural network capable of learning.

21
New cards

ELIZA

Early natural language processing program that simulates conversation.

22
New cards

The Turing Test

Test where a human evaluator interacts with a machine to determine if it can imitate a human; passing suggests AI capability.

23
New cards

AlphaGo

Go-playing AI developed by DeepMind that defeated a world champion.

24
New cards

Loss (Cost) Function

Measures error between predicted and true values; used to guide learning.