Untitled Flashcards Set

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

1/20

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

21 Terms

1
New cards
Training Set
The collection of data used to teach a machine learning model, including multiple examples for learning patterns.
2
New cards
Example (Instance)
One row from the training set, consisting of features (inputs) and a label (output).
3
New cards
Label (Target)
The value that a model is trying to predict; also known as the dependent variable.
4
New cards
Features (Inputs)
Input variables used to make predictions; also called independent variables.
5
New cards
Linear Regression
A simple machine learning model that assumes a straight-line relationship between features and labels.
6
New cards
Weights
Numbers that determine how important each feature is for the model's prediction.
7
New cards
Bias
A constant that adjusts the predictions made by the model, ensuring a non-zero output even when all features are zero.
8
New cards
Loss Function
A method for measuring how inaccurate a model's predictions are, commonly using Mean Squared Error.
9
New cards
Gradient Descent
An optimization algorithm used by models to learn by adjusting weights and bias step by step.
10
New cards
Stochastic Gradient Descent (SGD)
A variant of gradient descent that updates weights using one example at a time.
11
New cards
Minibatch Gradient Descent
A method that updates weights using a small batch of examples, balancing speed and stability.
12
New cards
Parameters
Values that the model learns automatically during training, including weights and bias.
13
New cards
Hyperparameters
Settings that are manually chosen before training; these control how the model learns but are not learned automatically.
14
New cards
Validation Set
A separate dataset used to evaluate the model's performance on new data, preventing overfitting.
15
New cards
Vectorization
Using matrices and vectors for computations to speed up calculations in machine learning.
16
New cards
Biological Neurons
Real neurons in the brain, which inspired the design of artificial neural networks.
17
New cards
Artificial Neurons
Components of artificial neural networks that mimic biological neurons to process input data.
18
New cards

Soma (Cell Body)

The part of a biological neuron that processes signals, comparable to a neuron (node) in an artificial neural network.

19
New cards

Dendrites

Extensions of a biological neuron that receive signals from other neurons, analogous to the input layer that receives input features in an artificial neural network.

20
New cards

Axon

The long projection from a biological neuron that sends output to other neurons, similar to the output layer producing predictions in an artificial neural network.

21
New cards

Synapse

The junction between biological neurons for signal transmission, akin to weights and bias in an artificial neural network which determine the importance of inputs.