You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -218,11 +218,10 @@ problem.rules.sort()
218
218
problem.rules.to_csv('output.csv')
219
219
```
220
220
221
-
#### Interest measures
221
+
#### Interestingness measures
222
222
223
-
The framework implements several popular interest measures, which can be used to compute the fitness function value of rules
224
-
and for assessing the quality of the mined rules. A full list of the implemented interest measures along with their descriptions
225
-
and equations can be found [here](interest_measures.md).
223
+
The framework implements several popular interestingness measures, which can be used to compute the fitness function value of rules
224
+
and for assessing the quality of the mined rules. A full list of the implemented interestingness measures along with their definitions can be found [here](interestingness_measures.md).
Copy file name to clipboardExpand all lines: paper/paper.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,19 +53,19 @@ analyzed statistically, or visualized using the visualization methods implemente
53
53
Numerical Association Rule Mining plays a vital role in the data revolution era [@telikani_survey_2020]. Several research
54
54
papers that present NARM methods exist, but universal software where all primary tasks of NARM, i.e., preprocessing, searching
55
55
for association rules, and visualization, is lacking. The NiaARM framework provides users with methods that allow them to
56
-
preprocess their data, implement several interest measures, and powerful visualization techniques. In a nutshell, the benefits
56
+
preprocess their data, implement several interestingness measures, and powerful visualization techniques. In a nutshell, the benefits
57
57
of the NiaARM framework are:
58
58
59
59
1. A simple way to mine association rules on numerical, categorical, or mixed attribute-type datasets.
60
60
61
61
2. Combined with the NiaPy library, it allows testing out the proposed approach using arbitrary nature-inspired algorithms.
62
62
63
-
3. A vast collection of implemented popular interest measures to measure the mined rules' quality.
63
+
3. A vast collection of implemented popular interestingness measures to measure the mined rules' quality.
64
64
65
65
4. Powerful visualization methods.
66
66
67
67
5. A simple command-line interface for easier handling with the proposed tool.
68
68
69
-
To the authors' knowledge, NiaARM is one of only three publicly available software solutions that implement any form of numerical association rule mining, the other two being KEEL [@alcala2009keel] and uARMSolver [@fister_uarmsolver_2020]. KEEL is a software tool used to assess evolutionary algorithms for machine learning problems of various kinds such as regression, classification, unsupervised learning, etc. It's a GUI application written in Java primarily intended for research and educational purposes. Although its scope is much wider it also includes some popular algorithms for numerical association rule mining including GAR, GENAR and MODENAR. The uARMSolver framework, written in C++, also implements the ARM-DE algorithm. Comparatively, NiaARM offers better ease of use, the ability to use arbitrary nature-inspired algorithms from the NiaPy framework (uARMSolver only implements DE and PSO), and the ability to optimize using more interest measures.
69
+
To the authors' knowledge, NiaARM is one of only three publicly available software solutions that implement any form of numerical association rule mining, the other two being KEEL [@alcala2009keel] and uARMSolver [@fister_uarmsolver_2020]. KEEL is a software tool used to assess evolutionary algorithms for machine learning problems of various kinds such as regression, classification, unsupervised learning, etc. It's a GUI application written in Java primarily intended for research and educational purposes. Although its scope is much wider it also includes some popular algorithms for numerical association rule mining including GAR, GENAR and MODENAR. The uARMSolver framework, written in C++, also implements the ARM-DE algorithm. Comparatively, NiaARM offers better ease of use, the ability to use arbitrary nature-inspired algorithms from the NiaPy framework (uARMSolver only implements DE and PSO), and the ability to optimize using more interestingness measures.
0 commit comments