-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Performance for converting transactions to BitMatrix #1
Comments
Considering the overhead of itemset mining itself, I would guess that the conversion overhead would be negligible. But I wonder why you are using |
Ah the input I intend to pass from Python was like |
Okay, so for each feature id in your transaction, you will have to set |
Thanks! May I ask why are you implementing the test dataset instead of using |
The test dataset is for test purposes, not a documentation for client users. Even tho, there is a comment there already mentioning one should use a bitmatrix in a production scenario. |
I am not familiar with
BitMatrix
that is used in this library, if I want to pass a list of transactions from python withPyO3
, would there be too much overhead converting transactions in form ofVec<Vec<i64>>
to theBitMatrix
since I have to set those values one by one.The text was updated successfully, but these errors were encountered: