MidTerm Flashcards

1
Q

A* function

A

f(n) = g(n) + h(n)

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

a* g(n) means?

A

cost of the path from the start node to node n

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

A* h(n) means?

A

h(n) is a heuristic that est. the cost of the cheapest path from node n to end node.

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

A* looks for f(n) to be small or bigger?

A

smaller

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

Completeness

A

if at least one solution exists then the algorithm is guaranteed find a solution in a finite amount of time

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

Optimal

A

algorithm will return the best solution

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

Optimally Efficient

A

no other algorithm can do this faster

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

Expectimax is optimal

A

false

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

Expectimax does not require to search full tree

A

false

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

Expectimax is modeled off ________ aglorithm, but it assumes ____________.

A

MiniMax

assumes that the adversary is more based off chance than playing optimally.

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

Probcut

A

base on the idea that the result v of a shallow search with depth d is a rough estimate of the result v of a deeper search.

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

Minimax has problems with? Why?

A

does not deal with high branching factors. It has to full search the tree

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

Exploitation MCTS

A

wins/games

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

Exploration MCTS

A

c*sqrt(ln parentSims/simsAfterIth)

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