Skip to content

Commit 715159c

Browse files
committed
Minor edits
1 parent 4ccb8be commit 715159c

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
## General outline of framework
1818
NiaARM is a framework for Association Rule Mining based on nature-inspired algorithms for optimization. The framework is fully written in Python and runs on all platforms.
19-
NaARM allows users to automatically preprocess the data in a transaction database, to search for association rules and provide pretty output of rules found. This framework also supports numerical and real-valued types of attributes besides the categorical ones. Mining the association rules is defined as an optimization and solved using the nature-inspired algorithms that comes from the related framework called [NiaPy](https://github.com/NiaOrg/NiaPy).
19+
NiaARM allows users to automatically preprocess the data in a transaction database, to search for association rules and provide pretty output of rules found. This framework also supports numerical and real-valued types of attributes besides the categorical ones. Mining the association rules is defined as an optimization problem and solved using the nature-inspired algorithms that comes from the related framework called [NiaPy](https://github.com/NiaOrg/NiaPy).
2020

2121
## Detailed insights
2222
Current version witholds (but is not limited to) following functions:
@@ -39,7 +39,7 @@ pip3 install niaarm
3939

4040
## Examples
4141

42-
For a list of examples see the [examples folder]((examples/).
42+
For a list of examples see the [examples folder](examples/).
4343

4444
## Reference Papers:
4545

datasets/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# References
2+
3+
- Abalone dataset is downloaded from https://archive.ics.uci.edu/ml/index.php.
4+
5+
- wiki_test_case dataset is composed from first Table found in: https://en.wikipedia.org/wiki/Lift_(data_mining)

niaarm/tests/test_shrinkage.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,6 @@ def test_A(self):
3434
self.assertEqual(shrinkage, 1)
3535

3636
def test_B(self):
37-
# Rule: B => 1
38-
# antecedent_b = [['B']]
39-
40-
# consequent_b = [[1, 1]]
41-
42-
# support_b = 0.2857142857142857
43-
44-
# confidence_b = 0.666666666667
45-
4637
vector = [
4738
0.95157038,
4839
0.17362622,

0 commit comments

Comments
 (0)