L10 - ACO and ML Flashcards

1
Q

What is the name of the technique used when using ACO to optimise the ML models?

A

Auto-ML

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

How can ACO be utilised in Machine Learning?

A

ACO can be used as a method to optimise a models parameters

ACO can be use to optimise the model itself.

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

Is classification considered an optimisation problem? If so, explain how…

A

Yes, because we need to create a set of rules that optimally classifies the input data.

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

What are the components of the Classification Rule? Use the rule IF(outlook=sunny) THEN playTennis = No as an example.

A

Rule Antecedent -> Condition
Rule Consequent -> Result

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

A model is created by a…

A

Set of learned rules.

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

Define Sequential Covering…

A

A ML technique used to build rule-based classifiers. The final set of rules make up the classification model.

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

Explain how Sequential Covering works…

A
  1. Start with 0 rules, and iterate over the data to derive classification rules from the training data set. The rules are accumulated, and result in a set containing all classification rules for the model.
  2. This rule-based classifier can then be used on unseen data for classification tasks.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Define the Ant Miner algorithm…

A

An ACO based data mining algorithm that classifies data instances based on the features and attributes of each instance.

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

What does the Ant-Miner establish to make classifications?

A

Classification rules within the data.

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

How does Ant-Miner represent its findings?

A

A graph consisting of attributes and values of the data, and the classification relationships between each of these.

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

How is an Ant-Miner graph created?

A
  1. Node generation:
    a) For each categorical attribute: Create an isolated node for every attribute-value in the data set.
    b) For each continuous attribute: A node is added for the attribute.
  2. Ant selects a node and moves to another. If the destination node is categorical, the term is added to the rule. Otherwise, a discretisation step is performed before the term is added.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the Discretisation step?

A
  1. Slices the continuous attribute into finite intervals and finds the best interval for the current route.
  2. Expensive due to sorting of intervals.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is cAnt-Miner?

A

A compressed modification of Ant-Miner algorithm that uses a simplified rule set.

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