diff --git a/PAMI/frequentPattern/basic/Apriori.py b/PAMI/frequentPattern/basic/Apriori.py index b05e363f..a30cc77f 100644 --- a/PAMI/frequentPattern/basic/Apriori.py +++ b/PAMI/frequentPattern/basic/Apriori.py @@ -35,7 +35,7 @@ __copyright__ = """ -Copyright (C) 2021 Rage Uday Kiran +Copyright (C) 2026 Rage Uday Kiran This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -402,10 +402,10 @@ def printResults(self) -> None: _ap = Apriori(_ab._sys.argv[1], _ab._sys.argv[3], _ab._sys.argv[4]) if len(_ab._sys.argv) == 4: _ap = Apriori(_ab._sys.argv[1], _ab._sys.argv[3]) - _ap.mine() + _ap.mine() print("Total number of Frequent Patterns:", len(_ap.getPatterns())) - _ap.save(_ap._sys.argv[2]) + _ap.save(_ab._sys.argv[2]) print("Total Memory in USS:", _ap.getMemoryUSS()) print("Total Memory in RSS", _ap.getMemoryRSS()) print("Total ExecutionTime in ms:", _ap.getRuntime()) diff --git a/PAMI/frequentPattern/basic/ECLAT.py b/PAMI/frequentPattern/basic/ECLAT.py index 0513ac96..c549b93d 100644 --- a/PAMI/frequentPattern/basic/ECLAT.py +++ b/PAMI/frequentPattern/basic/ECLAT.py @@ -35,7 +35,7 @@ __copyright__ = """ -Copyright (C) 2021 Rage Uday Kiran +Copyright (C) 2026 Rage Uday Kiran This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -396,7 +396,7 @@ def printResults(self) -> None: _ap = ECLAT(_ab._sys.argv[1], _ab._sys.argv[3], _ab._sys.argv[4]) if len(_ab._sys.argv) == 4: _ap = ECLAT(_ab._sys.argv[1], _ab._sys.argv[3]) - _ap.mine() + _ap.mine() print("Total number of Frequent Patterns:", len(_ap.getPatterns())) _ap.save(_ab._sys.argv[2]) diff --git a/PAMI/frequentPattern/basic/FPGrowth.py b/PAMI/frequentPattern/basic/FPGrowth.py index 48db2f1a..77e8a9f6 100644 --- a/PAMI/frequentPattern/basic/FPGrowth.py +++ b/PAMI/frequentPattern/basic/FPGrowth.py @@ -35,7 +35,7 @@ __copyright__ = """ -Copyright (C) 2021 Rage Uday Kiran +Copyright (C) 2026 Rage Uday Kiran This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -532,7 +532,7 @@ def printResults(self) -> None: _ap = FPGrowth(_fp._sys.argv[1], _fp._sys.argv[3], _fp._sys.argv[4]) if len(_fp._sys.argv) == 4: _ap = FPGrowth(_fp._sys.argv[1], _fp._sys.argv[3]) - _ap.mine() + _ap.mine() print("Total number of Frequent Patterns:", len( _ap.getPatterns())) _ap.save(_fp._sys.argv[2])