Task 3 Not as important Flashcards

1
Q

How do we test mental representation theories ? (not as important)

A
  • Psychological plausibility
  • Neurological plausibility
  • practical applicability
  • Representational power
  • Computational power
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is meant by Representational power ?

A
  • How much information a mental representation can express.

- What do the mental representations express?

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

What is meant by Computational power ?

A
  • Basically, what can you do with the mental representation in terms of high lvl thinking
  • Can it be used for problem solving, (including planing decison making and explanation), learning and the use of langaug
  • how efficient is ur computational procedure acting on the mental representation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is meant by practical applicability ? (not as important)

A
  • Can the mental representation theory be used in fields of education and artifical intelligence
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is meant by psychological plausibility ? (not as important)

A
  • can the mental representation explain human thinking / undertsanding human cognition
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is meant by neurological plausibility ? (not as important)

A
  • Is the mental representation theory consistent with the results of neuroscientific experiments
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do machine learn ?

A
  • Via an optimization algorithm
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does the optimization algorithm consist of ?

A
  1. labeld data (numbers)

2. tunable parameters

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

How to find the best possible output ?

A
  • Via finding the perfect combination of parameters between all layers
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Ho do we find out the best possible parameters combination ?

A
  1. Via randomly trying (bad)
  2. Via the gradient method
    - Both try to find the local minimum of the coast function
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does deep learning mean ?

A
  • each layer can use the information extracted in the previous layer to build up a more complex representation of the data
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is part of a parameter ?

A
  • A parameter consist of weights and a Bias
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How does the gradient technique work ?

A
  1. You take a randome parameter
  2. Coast function tells u the parameter is incorrect
  3. the coast function reduces the error via changing the bias and its weights
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How does the coast function work?

A
  • The lower the coast function the better the parameter
  • The higher the coast function the worst the parameter
  • It is the way to say that the network makes an error
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How does the coast function now in which direction the weight should shift in order to become a better output ? (2 Dimensional)

A
  • Identfying the slope of the randome used parameter
  • shift to the left if slope is positive and shift the input to the right if the slope is negative
  • Right = increase the parameter
  • left = decrease the parameter
  • If you do this over and over again you will approach a local minimum
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How does the coast function now in which direction the weight should shift in order to become a better output ? (3 Dimensional)

A
  • identify the gradient of a function
  • Make the gradient negative which will show you in which direction you will have to move your parameter
  • Do this over and over again to adjust the parameters (gradient descent)
  • Identify the local minimum of the coast function
17
Q

Why do we need to use the negative gradient in order to identfy the local minimum of the coast function ?

A
  • The normal gradient = steepest highest increase

- The negative gradient shows decrease most quick

18
Q

What is meant by gradient descent ?

A
  • Repeated process of following the negative gradient to adjust parameters
  • Also identifies which weights matter more then other regarding the output
19
Q

What are the different approaches to mental representation ?

A
  • logic, rules, concepts, images, connections (artificial neural networks)