We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c770b0 commit cc1d830Copy full SHA for cc1d830
src/parameters/mod.rs
@@ -1,4 +1,11 @@
1
//! Builders for parameters that control various aspects of training.
2
+//!
3
+//! Configuration is based on the documented
4
+//! [XGBoost Parameters](https://xgboost.readthedocs.io/en/latest/parameter.html), see those for
5
+//! more details.
6
7
+//! Parameters are generally created through builders that provide sensible defaults, and ensure that
8
+//! any given settings are valid when built.
9
use std::default::Default;
10
use std::fmt::{self, Display};
11
0 commit comments