Association MLM Flashcards

1
Q

Unnamed: 0

A

Unnamed: 1

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

Association rule learning

A

Association rule learning is a rule-based machine learning method for discovering interesting relations between variables in large databases. It is intended to identify strong rules discovered in databases using measures of interestingness.

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

Association rule learning is a popular machine learning approach for discovering interesting relations between variables in large datasets. It’s commonly used for market basket analysis, where the goal is to find associations between products that are frequently purchased together.

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

One of the most popular algorithms used in association rule learning is the Apriori algorithm. It uses a breadth-first search strategy to count the support of item sets and uses a candidate generation function which exploits the downward closure property of support.

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

An association rule has two parts: an antecedent (if) and a consequent (then). An antecedent is an item (or items) found in the data, and a consequent is an item (or items) found in combination with the antecedent.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  1. Support and Confidence
A

The key metrics associated with association rule learning are support and confidence. Support refers to the popularity of an itemset, while confidence refers to the likelihood that an item B is also bought if item A is bought. A rule with high support and confidence is more significant.

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

Association rule learning can generate many rules and can require significant computational resources. Moreover, setting minimum support and confidence levels requires domain knowledge.

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

Association rule learning is widely used in various areas including Web analytics, retail, banking, and other domains where large transaction data is present. It’s most commonly known for its use in market basket analysis, but it can also be used for classification tasks, or even as a dimensionality reduction technique.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
  1. Scalability and Performance
A

Association rules can handle a large amount of data, and scalable algorithms are available. However, the performance of these algorithms depends greatly on the characteristics of the data and the user-defined criteria.

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

The results of association rule learning are rules that are easy for humans to understand. This makes association rule learning a valuable tool for exploratory data analysis.

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