Skip to content

Commit

Permalink
bump to v0.3.3, reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjthomas9 committed Jan 11, 2024
1 parent b463b7e commit b323d46
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "CatBoost"
uuid = "e2e10f9a-a85d-4fa9-b6b2-639a32100a12"
authors = ["Beacon Biosignals, Inc."]
version = "0.3.2"
version = "0.3.3"

[deps]
MLJModelInterface = "e80e1ace-859a-464e-9ed9-23947d8ae3ea"
Expand Down
10 changes: 4 additions & 6 deletions test/mlj_interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,10 @@
@test isempty(failures)
end
@testset "CatBoostClassifier" begin
for data in [
MLJTestInterface.make_binary(),
MLJTestInterface.make_multiclass(),
MLJTestInterface.make_binary(row_table=true),
MLJTestInterface.make_multiclass(row_table=false),
]
for data in [MLJTestInterface.make_binary(),
MLJTestInterface.make_multiclass(),
MLJTestInterface.make_binary(; row_table=true),
MLJTestInterface.make_multiclass(; row_table=false)]
X = data[1]
y = data[2]
failures, summary = MLJTestInterface.test([CatBoostClassifier], X, y;
Expand Down

0 comments on commit b323d46

Please sign in to comment.