Old Exam Part 2 New Flashcards

1
Q

Connect each of the three game playing programs with exactly one of the

  1. AlphaZero
  2. AlphaGo
  3. Deep Blue

a. has learned from expert games
b. searches all possible move sequences until a fixed depth
c. uses no expert knowledge at all

A

1c
2a
3b

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

Bring the four phases of Monte-Carlo Tree Search in to their correct ord

Expansion
Selection
Backpropagation
Simulation

A
  1. Selection
  2. Expansion
  3. Simulation
  4. Backpropagation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Choose the right answer

Assume you have a set of pictures of cats, and a set of pictures of dogs, and you use these to train a learning algorithm to recognize cats and dogs.

This problem is best described as:

a. reinforcement learning
b. semi-supervised learning
c. unsupervised learning
d. supervised learning

A

d. supervised learning

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

Choose the right answer

In a game, each side can make 3 possible moves in each position. A machine performs an exhaustive look-ahead search for 4 plies (half moves). How many possible leaf positions will it consider?

a. 81
b. 32
c. 12
d. 64

A

a 81

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

Given is a training example (x_1 ,x_2 ) = (1,-1) which should result in output 1. However, the network with the current weights and a threshold activation function outputs -1. How should the weights be changed:

w_0:
a. Increased
b. Decreased
c. Stay the same

w_1:
a. Increased
b. Decreased
c. Stay the same

w_2:
a. Increased
b. Decreased
c. Stay the same

A

w_0:
b. Decreased

w_1:
a. Increased

w_2:
b. Decreased

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

Specify whether the following statements are true or false:

  1. Retrograde analysis attempts to solve a game by computing the game-theoretic value of each possible game position.
  2. It is not possible to write a chess program that always plays an optimal move, not even with unlimited memory and infinitely fast computation
  3. The credit assignment problem describes the situation that an agent sometimes has to make sub-optimal actions in order to obtain information
  4. A good machine learning algorithm tries to perfectly fit every point in the training dataset.
A

1 True
2 False
3 False
4 False

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