BIDE algorithm returns extra patterns in the result.
mdsharifulhaque opened this issue · 6 comments
db = ['c', 'a', 'a', 'b', 'c'], ['a', 'b', 'c', 'b'], ['c', 'a', 'b', 'c'],['a', 'b', 'b', 'c', 'a']
ps.frequent(2, closed=True)
shows result:
[(3, ['c', 'a']), (2, ['c', 'a', 'b', 'c']), (3, ['c', 'b']), (4, ['a']), (2, ['a', 'a']), (4, ['a', 'b']), (4, ['a', 'b', 'c']), (2, ['a', 'b', 'b'])]
which was supposed to be:
[(3, ['c', 'a']), (2, ['c', 'a', 'b', 'c']), (3, ['c', 'b']), (2, ['a', 'a']), (4, ['a', 'b', 'c']), (2, ['a', 'b', 'b'])]
The input is from original paper of BIDE.
Hello!
Has this issue been corrected already?
Hello!
Has this issue been corrected already?
The Issue is still present.
Still present +1
Found issue. Will fix soon.
Sorry for the delay as my schedule was fully packed.
Fixed now. Tested on provided input example. Thanks for patience.