Package

io.picnicml.doddlemodel

preprocessing

Permalink

package preprocessing

Visibility
  1. Public
  2. All

Type Members

  1. case class OneHotEncoder extends Product with Serializable

    Permalink

    An immutable preprocessor that encodes categorical features as a one-hot (dummy) matrix made up of binary columns.

    An immutable preprocessor that encodes categorical features as a one-hot (dummy) matrix made up of binary columns. Preprocessor expects that categorical input values are in range [0, max(values)). If during the transformation a value larger than during training is encountered it is ignored, i.e. no value is set in the binary encoded matrix. Transformed categorical columns are appended at the end of the feature matrix.

  2. case class StandardScaler extends Product with Serializable

    Permalink

    An immutable preprocessor that transforms features by subtracting the mean and scaling to unit variance.

Value Members

  1. object OneHotEncoder extends Serializable

    Permalink
  2. object StandardScaler extends Serializable

    Permalink

Ungrouped