-
Notifications
You must be signed in to change notification settings - Fork 118
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
Model saving #18
Comments
Hi @adavoli91, |
Thank you for the reply. I managed to pickle eif_old, but I noticed that the output file is very large (~100MB for a dataset with ~500 rows and ~60 columns); the same dataset, processed with IF from sklearn, gives a pickle file of less than 1MB. Is that expected, or can it be handled? Thans |
Thanks, I think that;s expected since the eif_old is purely python while sklearn is C-based. The ideal scenario would be to add pickle to the cython class which requires some little development. |
Hi @mgckind , I back this feature request. I found eIF super useful and the only feature I'm lacking currently is model saving. Have you had any opportunity to work on that? |
I've rewritten Python version as eif_new.py. This version has performance matching C++ (~40x faster than eif_old.py) and allow model saving with model files 10x smaller than eif_old.py #24 |
Hi,
is it possible to save a model, e.g. with pickle?
Thanks
The text was updated successfully, but these errors were encountered: