We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe. The type and domain of the variables in the data should be a first class citizen
Describe the solution you'd like
Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.
Additional context This is also related to making assumptions first class citizens.
The text was updated successfully, but these errors were encountered:
I think we can follow a similar approach to scikit-learn and assume continuous by default and allow users to pass in a categorical mask (e.g. https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.HistGradientBoostingClassifier.html).
Idk if range of variables is important tho?
Then, we could have private attributes for each method _supports_categorical, _supports_mixed, _supports_continuous that is checked during fit(...)
_supports_categorical
_supports_mixed
_supports_continuous
fit(...)
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
The type and domain of the variables in the data should be a first class citizen
Describe the solution you'd like
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
This is also related to making assumptions first class citizens.
The text was updated successfully, but these errors were encountered: