-
Notifications
You must be signed in to change notification settings - Fork 87
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
UnboundLocalError: local variable 'params' referenced before assignment #16
Comments
Hi @Benno26 👍
Confirm it by closing this bug. |
Thought as much, thanks for the quick fix :) |
Fixed. Closed |
This issue returned. I tried version 0.3.0 and 0.3.1
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
/opt/conda/lib/python3.7/site-packages/featurewiz/featurewiz.py in featurewiz(dataname, target, corr_limit, verbose, sep, header, test_data, feature_engg, category_encoders, dask_xgboost_flag, nrows, **kwargs)
1130 param['nthread'] = -1
1131 param['tree_method'] = 'gpu_hist'
-> 1132 params['eta'] = 0.01
1133 params['subsample'] = 0.5
1134 params['grow_policy'] = 'depthwise' # 'lossguide' #
Is params getting set here instead of param? https://github.com/AutoViML/featurewiz/blob/main/featurewiz/featurewiz.py
The text was updated successfully, but these errors were encountered: