-
Notifications
You must be signed in to change notification settings - Fork 50
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
sga() and create_binning() have different default nbins #69
Comments
Hi I can work on this. This is my first contribution. A little guidance would be helpful. |
Hi @aravs16 , thanks for volunteering, this issue is mostly about syncing up the default arguments in https://github.com/zalando/expan/blob/dev/expan/core/experiment.py#L715 and https://github.com/zalando/expan/blob/dev/expan/core/binning.py#L732 Ideally we could somehow distinguish between categorical and numerical bins, but if that's not possible, we may also completely leave out the argument |
@jbao Thank you! Can we make nbins = 8 in both places and then pass nbins//2 on this line: |
hmm, I think we should make |
Hi @jbao, in my opinion, we should set |
Hi everyone, I found using |
I think we should specify the default value explicitly in the argument if we have one (e.g. in the case of |
Also, use different defaults for categorical (e.g. 4) and numerical (e.g. 8).
The text was updated successfully, but these errors were encountered: