[][src]Struct xgboost::FeatureMap

pub struct FeatureMap(_);

Maps a feature index to a name and type, used when dumping models as text.

See dump_model for usage.

Methods

impl FeatureMap[src]

pub fn from_file<P: AsRef<Path>>(path: P) -> Result<FeatureMap>[src]

Read a FeatureMap from a file at given path.

File should contain one feature definition per line, and be of the form:

<number>\t<name>\t<type>\n

Type should be one of:

  • i - binary feature
  • q - quantitative feature
  • int - integer features

E.g.:

0   age int
1   is-parent?=yes  i
2   is-parent?=no   i
3   income  int

Auto Trait Implementations

impl Send for FeatureMap

impl Sync for FeatureMap

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]