L4 Flashcards

1
Q

ANN

A
  • computing systems inspired by the biological neural networks in human brains
  • instead of neurons it has nodes who accept and combine weighted input, add bias, apply a function and output the result
  • 3 layers: input, hidden, output
  • hidden layer does complex calculations
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Details of how ANN works

A

Forward propagation:
- each node has input data, weight, bias and output
- input layer is determined and weights are assigned
- weights help to determine how import each variable is and how much it contributes to output
- inputs are weighted and then summed
- activation function is applied, and if output exceeds given threshold cell is activated and data is passed on to next layer -> feedforward
- output layer predicts final output
Backpropagation:
- in training phase results are fed to the network to compare to own outcomes
- go backward to correct errors and adjust weights

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Deep Learning

A

also called deep NN
- for big amount of complex data (normal ML for smaller amounts)
- human-like multilayered processing
- part of ML methods, mix of ANN and representation learning
- handles all types of data
supervised: image classification, object detection, face recognition
unsupervised: word embedding, image encoding
semi-supervised

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Deep learning procedure

A
  • construct network: input and hidden layers
  • train network
  • add additional hidden layer on top of previously learned network
  • retrain
  • repeat until ideal output is generated
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Representation learning

A

set of techniques that automatically discover representations needed for feature detection or classification from raw data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Application: DL in image processing

A
  • extracts higher level features with each layer -> the more layers the higher the level of features leant
  • output layer combines features to make prediction
  • lower layers identify edges, high ones things like digits, letters, faces
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Application: DL in face recognition

A

with mask:
- feature extraction
- mask detection
- face unmasking
- face restoration
- identification

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Application: DL in speech recognition

A
  • input audio
  • speech signal conversion
  • feature extraction
  • acoustic models
  • pronounciation dictionary
  • language models
  • recognize words and output in given form
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

other DL applications

A

Autonomous vehicles
- detecting obstacles and reacting
Recommendation engines
- product, coupons, movies
- stocks and social media

How well did you know this?
1
Not at all
2
3
4
5
Perfectly