8: Saturday group stuff Flashcards

1
Q

What is semantics, in the context of reasoning and deductive logic?

A

Reasoning in natural language rather than a formal logical system.

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

What is a causal relationship and a diagnostic relationship?

A

A causal relationship between two events is one in which the outcome of one event influences the outcome of the other. A diagnostic relationship is in the reverse direction of a causal relationship; it is diagnostic in that knowing the second event happens makes the first one more likely.

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

What is the minimum number of probabilities given in a joint probability distribution?

A

The number of all possible probabilities (for outcomes), i.e. the number of cells, -1.

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

What is a logical model?

A

A replication of reality containing a group of situations in which certain outcomes are true. Situations are objects that exist and their interpretations (the states they could be in).

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

What is entailment?

A

When one condition is true if and only if another is. A entails B if B is true if and only if A is true.

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

What is the RRT* algorithm?

A

An extension to and optimisation of the RRT algorithm in which rather than returning the first possible solution (path) a more optimal one is sought and returned instead if possible and found.

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

What does it mean for a heuristic to be admissible?

A

The heuristic never overestimates the cost value (always less than or equal to).

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

What is the ravine problem?

A

When seeking the lowest point and an AI descends into a valley-shaped (ravine) feature in the 3d weight error space, momentum means you will zig-zag up and down each edge either side instead of following the floor to reach the goal. This reduces optimality and efficiency but can be fixed by adding weight decay.

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

What is the generalisation problem?

A

When a neural network becomes too specialised to its training data so has a lower performance for testing/validation (and real-world) data. Fix with early stopping: run on training once and then on training data, find the point in training at which performance on training is best and error is minimum. Then rerun the training but stop early when at the minimum point found.

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

What is a recurrent neural net?

A

A neural network in which nodes can be connected to themselves (output of a neuron goes to a part of or all of its input). This facilitates memory and context in the network to some degree.

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

What is a convolutional neural net?

A

Neural networks that split up the input and then process the individual parts before recombining to find the final result (divide and conquer). Often used in computer vision applications. Uses ReLu (rectified linear unit) activation function as sigmoid takes too long.

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