Skip to content

Commit

Permalink
Update FTApriori.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Likhitha-palla authored Jul 22, 2023
1 parent 60336ad commit f96dd01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PAMI/faultTolerantFrequentPattern/basic/FTApriori.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def _getFaultPatterns(self):
# support, items = self._Count(j)
# print(support, items)
res = self._countItemSupport(j)
print(j, res)
#print(j, res)
if len(j) >= self._minLength and res >= self._minSup:
self._finalPatterns[tuple(j)] = res

Expand Down

0 comments on commit f96dd01

Please sign in to comment.