Created
March 8, 2021 02:42
-
-
Save zronaghi/6960a5b8814c39b232751656d1ea6c3f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
num_round = 20 | |
param = {'booster' : 'gbtree' } | |
param['tree_method'] = 'gpu_hist' | |
start_time = time.perf_counter() | |
bst = xgb.train(param,train,num_round) | |
end_time = time.perf_counter() | |
print('This took {0:.3f} seconds'.format(end_time-start_time)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment