Skip to content
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

Debug Assertion Failed #73

Open
DonSeger opened this issue Jan 17, 2022 · 0 comments
Open

Debug Assertion Failed #73

DonSeger opened this issue Jan 17, 2022 · 0 comments
Assignees

Comments

@DonSeger
Copy link

DonSeger commented Jan 17, 2022

I have installed thundergbm with cuda 11 support. But when I try to run the thundergbm classifier inside a nested loop in order to do a hyperparameter search, I get the following error:

Debug Asertion Failed

Python Version: 3.7.8
Microsoft Visual Studio 19: v.16.11.8
Cuda: 11.5
cmake: 3.22.1

Below is the code that I run in a Python Jupyter Notebook:

for n in range(100,700,100):           
    for d in range(3,16,1):             
        for c in [0.4,0.5,0.6,0.7,0.8]:   
                                                           
            clf = TGBMClassifier(depth=d, n_trees = 1, n_parallel_trees=n, bagging=1, column_sampling_rate=c, objective = 
                                             "binary:logistic")
            clf.fit(X_train, y_train)

What is the reason?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants