docs.rs failed to build catboost-rs-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
catboost-rs-0.1.8
CatBoost Rust Package
Basic usage example
- Add a dependency to your Cargo.toml:
[dependencies]
catboost = { git = "https://github.com/catboost/catboost" }
- Now you can apply pretrained model in your code:
// Bring catboost module into the scope
use catboost;
Documentation
Run cargo doc --open in catboost/rust-package directory.
Tests
Run cargo test in catboost/rust-package directory.
To run tests with sanitizer, uncomment line "--sanitize=address", in catboost/rust-package/catboost-sys/build.rs and run RUSTFLAGS="-Z sanitizer=address" cargo +nightly test.