Packages

abstract class MLReader[T] extends BaseReadWrite

Abstract class for utility classes that can load ML instances.

T

ML instance type

Annotations
@Since( "1.6.0" )
Source
ReadWrite.scala
Linear Supertypes
BaseReadWrite, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MLReader
  2. BaseReadWrite
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MLReader()

Abstract Value Members

  1. abstract def load(path: String): T

    Loads the ML component from the input path.

    Loads the ML component from the input path.

    Annotations
    @Since( "1.6.0" )

Concrete Value Members

  1. def session(sparkSession: SparkSession): MLReader.this.type

    Sets the Spark Session to use for saving/loading.

    Sets the Spark Session to use for saving/loading.

    Definition Classes
    MLReader → BaseReadWrite