Packages

trait ModelSerializationSupport extends Logging

Helper trait containing methods to export and import models from and to Sparkling Water

Annotations
@Deprecated
Linear Supertypes
Logging, Serializable, Serializable, Logging, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ModelSerializationSupport
  2. Logging
  3. Serializable
  4. Serializable
  5. Logging
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type H2OBaseModel = Model[_, _ <: Parameters, _ <: Output]

Value Members

  1. def exportH2OModel(model: H2OBaseModel, destination: String, force: Boolean): String

    Export binary model to specified directory

    Export binary model to specified directory

    model

    model to export

    destination

    destination path

    force

    override the model if it already exist in the destination URI

    returns

    destination URI

    Annotations
    @DeprecatedMethod( ... , ... )
  2. def exportH2OModel(model: H2OBaseModel, destination: URI, force: Boolean = false): URI

    Export binary model to specified directory

    Export binary model to specified directory

    model

    model to export

    destination

    destination URI

    force

    override the model if it already exist in the destination URI

    returns

    destination URI

    Annotations
    @DeprecatedMethod( ... , ... )
  3. def exportMOJOModel(model: H2OBaseModel, destination: String, force: Boolean): String

    Export MOJO model to specified directory

    Export MOJO model to specified directory

    model

    model to export

    destination

    destination path

    force

    override the model if it already exist in the destination URI

    returns

    destination URI

    Annotations
    @DeprecatedMethod( ... , ... )
  4. def exportMOJOModel(model: H2OBaseModel, destination: URI, force: Boolean = false): URI

    Export MOJO model to specified directory

    Export MOJO model to specified directory

    model

    model to export

    destination

    destination URI

    force

    override the model if it already exist in the destination URI

    returns

    destination URI

    Annotations
    @DeprecatedMethod( ... , ... )
  5. def exportPOJOModel(model: H2OBaseModel, destination: String, force: Boolean): String

    Export POJO model to specified directory

    Export POJO model to specified directory

    model

    model to export

    destination

    destination path

    force

    override the model if it already exist in the destination URI

    returns

    destination URI

    Annotations
    @DeprecatedMethod( ... , ... )
  6. def exportPOJOModel(model: H2OBaseModel, destination: URI, force: Boolean = false): URI

    Export POJO model to specified directory

    Export POJO model to specified directory

    model

    model to export

    destination

    destination URI

    force

    override the model if it already exist in the destination URI

    returns

    destination URI

    Annotations
    @DeprecatedMethod( ... , ... )
  7. def loadH2OModel[M <: H2OBaseModel](source: String): M

    Load H2O binary model from specified directory

    Load H2O binary model from specified directory

    M

    Model Type

    source

    source path

    returns

    imported model

    Annotations
    @DeprecatedMethod( ... , ... )
  8. def loadH2OModel[M <: H2OBaseModel](source: URI): M

    Load H2O binary model from specified directory

    Load H2O binary model from specified directory

    M

    Model Type

    source

    source URI

    returns

    imported model

    Annotations
    @DeprecatedMethod( ... , ... )
  9. def loadMOJOModel(source: URI): MojoModel

    Load MOJO model from specified directory

    Load MOJO model from specified directory

    source

    source URI

    returns

    H2O's Mojo model

    Annotations
    @DeprecatedMethod( "H2OMOJOModel.createFromMojo" , ... )