Blandat Flashcards

1
Q

De olika maskin-inlärningarna:

A

Supervised learning, unsupervised learning och reinforcement learning

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

Olika faser

A

Training phase och Infer Phase

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

Training phase

A

Learning from known examples/observations and building ML model

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

Infer phase

A

Applying the built model on unseen examples, measuring the performance/ accuracy

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

Supervised learning

A

Learn with labelled training set, we need to train the machine.
- Regression
- Classification
(-Artificial Neural Networks)

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

I vilka problem kan man använda supervised learning?

A

classification and regression problems

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

Classification

A

Decision trees, SVM support vector machine, Others

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

Artificial Neural Networks

A

Deep learning, classical neural networks and deep.

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

Regression

A

Used for data, linear polynomial

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

Unsupervised learning

A

Discovering patterns in unlabelled data, machine is self-sufficient in learning.
-Clustering

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

Clustering

A

Put common things, objects in cluster. One is K-means, using distances.

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

Reinforcement learning

A

Learning based on feedback or reward, machine has its own rules of hit & trial.

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

Neural network

A

Works like a human brain with nodes referred to as neurons. Described with layers. Input layer, hidden layer and output layer. Forward and backward propagation is used to make the network adapt and learn. The output is evaluated, that is called backward propagation. Forward is responsible for making predictions and backward for adjusting the model to reduce the prediction errors. Making the network able to improve it’s performance.

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

DFS (queue, optimality time space)

A

LIFO queue
Not optimal, O(b^m) time, O(bm) space

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

BFS (queue, optimality time space)

A

FIFO queue
Optimal, O(b^d) time, O(b^d+1)

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

Uninformed- Cost search(optimality time space)

A

Optimal, O(b^d) time, O(b^d+1) space

17
Q

BestFS (optimality time space)

A

Not optimal, O(b^m) time, O(bm) space

18
Q

A*(optimality time space)

A

Optimality depends on how heuristic

19
Q

MiniMax(optimality time space)

A

Optimal, O(b^m) time , O(bm) space

20
Q

CSP strategy

A

Generate and Test, Backtracking, MRV, LCV

21
Q

Semantic network

A

Representation of knowledge

22
Q

O(b^m) time , O(bm) space

A

DFS, BestFS, MiniMax

23
Q

O(b^d) time, O(b^d+1)

A

BFS,Uninformed- Cost search

24
Q

Vilka algoritmer är optimala?

A

BFS, cost, mini max