trait ModelSerializationSupport extends Logging
Helper trait containing methods to export and import models from and to Sparkling Water
- Annotations
- @Deprecated
- Alphabetic
- By Inheritance
- ModelSerializationSupport
- Logging
- Serializable
- Serializable
- Logging
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- type H2OBaseModel = Model[_, _ <: Parameters, _ <: Output]
Value Members
-
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( ... , ... )
-
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( ... , ... )
-
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( ... , ... )
-
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( ... , ... )
-
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( ... , ... )
-
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( ... , ... )
-
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( ... , ... )
-
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( ... , ... )
-
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" , ... )