Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c431431
created first version of api. ffi calls and example missing
CallMeMSL May 18, 2023
7732775
added dataset ffi
CallMeMSL May 19, 2023
5057c1a
fixed build
CallMeMSL May 19, 2023
c1d5dec
fix couple errors
CallMeMSL May 20, 2023
40cef9e
added ffi calls, documentation (without tests). integrated pull reque…
CallMeMSL May 25, 2023
2269ad5
use num_iterations
CallMeMSL May 25, 2023
2089b13
implement predict
CallMeMSL May 25, 2023
3bffc00
implemented eval
CallMeMSL May 25, 2023
dbdb85f
clippy fix
CallMeMSL May 25, 2023
52c1c1d
remove old files
CallMeMSL May 25, 2023
96ae0f9
cargo fmt
CallMeMSL May 25, 2023
f36d4e5
fix polars code
CallMeMSL May 25, 2023
e4f5521
add booster drop
CallMeMSL May 25, 2023
02fa6a9
implemented simple builder test
CallMeMSL May 25, 2023
938a822
fmt
CallMeMSL May 25, 2023
6b82f0a
added evaluation to test
CallMeMSL May 25, 2023
9f4a440
a bit more complex test
CallMeMSL May 25, 2023
6258205
added (doc)tests in builder.rs
CallMeMSL May 26, 2023
a85ffc5
fix test
CallMeMSL May 26, 2023
d3b53e0
added booster tests
CallMeMSL May 26, 2023
bb37b56
fixed module acess, cleaned doctests up
CallMeMSL May 26, 2023
5252bc4
added dataset docs and a few constructors
CallMeMSL May 26, 2023
445e54d
make it nicer for my ide
CallMeMSL May 26, 2023
40e52ad
add extern
CallMeMSL May 26, 2023
550a7e6
add df test as cfg_attr
CallMeMSL May 26, 2023
fd359cb
lets try this
CallMeMSL May 26, 2023
0835f50
change df doctest
CallMeMSL May 26, 2023
b915914
added simple df loading test
CallMeMSL May 26, 2023
2ccada8
added actual loading tests
CallMeMSL May 27, 2023
4d1c750
cargo fmt
CallMeMSL May 27, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ libc = "0.2.81"
derive_builder = "0.5.1"
serde_json = "1.0.59"
polars = {version = "0.16.0", optional = true}
csv = "1.2.1"


[features]
Expand Down
Loading