Skip to content

Commit

Permalink
fix unexported sigmoid funcion for logistic eval in CUDA extension
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiedb committed Oct 13, 2023
1 parent ada64b8 commit c7fe1f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmarks/regressor.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ nobs = Int(1e6)
num_feat = Int(100)
nrounds = 200
max_depth = 6
tree_type = "oblivious"
tree_type = "binary"
T = Float64
nthread = Base.Threads.nthreads()
@info "testing with: $nobs observations | $num_feat features. nthread: $nthread | tree_type : $tree_type | max_depth : $max_depth"
Expand Down
2 changes: 1 addition & 1 deletion experiments/readme_plots_gpu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ using EvoTrees: predict, sigmoid, logit
# using ProfileView

# prepare a dataset
tree_type = "oblivious" # binary/oblivious
tree_type = "binary" # binary/oblivious
device = "gpu"

Random.seed!(123)
Expand Down

0 comments on commit c7fe1f0

Please sign in to comment.