Open schmitcn opened 1 year ago
Hi @ealcobaca, @FelSiq,
Are there any plans on addressing this anytime soon? If not, that's fine, I just need to know this for a project planning purpose (so that we can look for a different tool).
Best regards.
Hi @schmitcn
Sorry for the delay. We won't be addressing this issue soon, but there might be a solution.
Did you try using mfe.fit(X, ..., transform_cat="one-hot")
?
This should avoid using the patsy
dependency, and will provide an alternative method for encoding categorical variables.
Thanks for your feeback.
Best regards, Felipe.
Describe the bug When running MFE with group
general
and a dataset with more than (around) 500 features, aRecursionError: maximum recursion depth exceeded while calling a Python object
error is thrown.To Reproduce Steps to reproduce the behavior:
Expected behavior Generate the general meta-features.
Screenshots N/A
Desktop (please complete the following information):
Additional context The stack trace is as follows:
The failure comes from
patsy
and seems to be related to what is mentioned in this issue in their repo. It is not fixed and they do not intend to do so, as the successor ofpatsy
,formulaic
already has this solved. My suggestion here would be to upgrade toformulaic
, aspatsy
is no longer under active development (stated in their readme).