Intro to AI 2 final terms (Lecture Neural Networks)

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

1/12

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.

13 Terms

1
New cards

Perceptron

A basic unit of a neural network that makes binary decisions using weights and bias.

Key Parts of a Perceptron:

  • Inputs: Features of the data (e.g., X1, X2)

  • Weights: Values that determine the importance of each input

  • Bias: A constant added to the result to shift the decision boundary.

  • Activation Function: Usually a step function that outputs 1 if the total input is above a threshold, and 0 otherwise.

  • Output: The prediction (1 or 0)

2
New cards

Activation Function

Function that determines if a neuron fires (e.g., threshold, sigmoid).

3
New cards

Bias Term

A constant added to the weighted sum to shift the decision boundary.

4
New cards

Weight

A value that determines the importance of a given input in a neuron.

5
New cards

Linearly Separable

A dataset that can be separated by a straight line.

6
New cards

XOR Problem

A logic function that is not linearly separable; can't be solved by a single perceptron.

7
New cards

Multilayer Perceptron

A neural network with one or more hidden layers, capable of solving non-linear problems.

8
New cards

McCulloch-Pitts Neuron

An early model of a neuron using binary input, summation, and threshold activation.

The activity of the neuron is an ‘all-or-none’ process (either it fires - output 1, or it doesn’t - output 0)

9
New cards

Threshold Function

Fires if the weighted input sum exceeds a threshold.

10
New cards

Learning Rate

Controls how much weights are adjusted during training.

11
New cards

Biological Neurons

The basic building blocks of the nervous system, which process and transmit information through electrical and chemical signals. Biological neurons consist of a cell body, dendrites, and an axon.

12
New cards

Action Potential

A brief change in the electrical potential across the membrane. The inside of the neuron becomes positively charged.

13
New cards