|
Apriori Constructor
|
Initializes a new instance of the
Apriori class.
Namespace:
Accord.MachineLearning.Rules
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public Apriori(
int threshold,
double confidence
)
Public Sub New (
threshold As Integer,
confidence As Double
)
Request Example
View SourceParameters
- threshold
- Type: SystemInt32
The minimum number of times a rule should be detected (also known as its support)
before it can be registered as a permanent in the learned classifier. - confidence
- Type: SystemDouble
The minimum confidence in an association rule beore it is
registered.
See Also