Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tiemvanderdeure committed Nov 22, 2024
1 parent 2c61637 commit b02aa2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ presencedata = (a = rand(rng, n), b = rand(rng, n).^2, c = sqrt.(rand(rng, n)))

## ensemble
models = (
rf = SDM.RandomForestClassifier(; rng),
rf2 = OneHotEncoder() |> SDM.RandomForestClassifier(; max_depth = 3, rng),
lm = SDM.LinearBinaryClassifier(),
brt = SDM.EvoTreeClassifier(; rng)
rf = RandomForestClassifier(; rng),
rf2 = OneHotEncoder() |> RandomForestClassifier(; max_depth = 3, rng),
lm = LinearBinaryClassifier(),
brt = EvoTreeClassifier(; rng)
)

ensemble = sdm(data, models;
Expand Down

0 comments on commit b02aa2b

Please sign in to comment.