Untitled

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

1/7

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.

8 Terms

1
New cards

Multilayer Perceptrons

A type of feedforward neural network with fully connected neurons and nonlinear activation functions, used to distinguish non-linearly separable data.

2
New cards

Input layer

The initial layer of neurons in a multilayer perceptron that receives input data, with each neuron representing a feature or dimension of the input data.

3
New cards

Hidden layer

Layers of neurons between the input and output layers in a multilayer perceptron, where each neuron receives inputs from the previous layer and produces an output passed to the next layer.

4
New cards

Output layer

The final layer of neurons in a multilayer perceptron that produces the network's output, with the number of neurons depending on the task being performed.

5
New cards

Weights

Associated with connections between neurons in adjacent layers, determining the strength of the connection and learned during the training process.

6
New cards

Bias neurons

Neurons in each layer (except the input layer) providing a constant input to the next layer, adjusting the activation function and learned during training.

7
New cards

Activation function

Functions applied to the weighted sum of inputs in neurons, introducing nonlinearity into the network to learn complex patterns in the data.

8
New cards

Training with backpropagation

The method used to train multilayer perceptrons, computing gradients of a loss function to update parameters iteratively and minimize loss.