1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//! Rust wrapper around the [XGBoost](https://xgboost.ai) machine learning library.
//!
//! Provides a high level interface for training machine learning models using
//! [gradient boosting](https://en.wikipedia.org/wiki/Gradient_boosting).
//!
//! Currently in the early stages of development, API is likely to be fairly unstable as new
//! features are added.
//!
//! # Basic usage example
//!
//! ```
//! extern crate xgboost;
//!
//! use xgboost::{parameters, DMatrix, Booster};
//!
//! fn main() {
//! // training matrix with 5 training examples and 3 features
//! let x_train = &[1.0, 1.0, 1.0,
//! 1.0, 1.0, 0.0,
//! 1.0, 1.0, 1.0,
//! 0.0, 0.0, 0.0,
//! 1.0, 1.0, 1.0];
//! let num_rows = 5;
//! let y_train = &[1.0, 1.0, 1.0, 0.0, 1.0];
//!
//! // convert training data into XGBoost's matrix format
//! let mut dtrain = DMatrix::from_dense(x_train, num_rows).unwrap();
//!
//! // set ground truth labels for the training matrix
//! dtrain.set_labels(y_train).unwrap();
//!
//! // test matrix with 1 row
//! let x_test = &[0.7, 0.9, 0.6];
//! let num_rows = 1;
//! let y_test = &[1.0];
//! let mut dtest = DMatrix::from_dense(x_test, num_rows).unwrap();
//! dtest.set_labels(y_test).unwrap();
//!
//! // specify datasets to evaluate against during training
//! let evaluation_sets = &[(&dtrain, "train"), (&dtest, "test")];
//!
//! // specify overall training setup
//! let training_params = parameters::TrainingParametersBuilder::default()
//! .dtrain(&dtrain)
//! .evaluation_sets(Some(evaluation_sets))
//! .build()
//! .unwrap();
//!
//! // train model, and print evaluation data
//! let bst = Booster::train(&training_params).unwrap();
//!
//! println!("{:?}", bst.predict(&dtest).unwrap());
//! }
//! ```
//!
//! See the [examples](https://github.com/davechallis/rust-xgboost/tree/master/examples) directory for
//! more detailed examples of different features.
//!
extern crate derive_builder;
extern crate log;
extern crate xgboost_sys;
extern crate libc;
extern crate tempfile;
extern crate indexmap;
pub use ;
pub use DMatrix;
pub use ;