package bundle
- Alphabetic
- Public
- All
Type Members
-
case class
BundleContext[Context](context: Context, format: SerializationFormat, bundleRegistry: BundleRegistry, fs: FileSystem, path: Path) extends HasBundleRegistry with Product with Serializable
Class for holding serialization information for a ml.combust.bundle.dsl.Bundle.
Class for holding serialization information for a ml.combust.bundle.dsl.Bundle.
This class holds all contextual information for serializing components into Bundle.ML.
- Context
extra contextual information specific to implementation
- format
desired serialization format (Json, Protobuf)
- bundleRegistry
bundle registry of all supported operations
- fs
file system for bundle
- path
path to the Bundle.ML model
- case class BundleFile(fs: FileSystem, path: Path) extends Closeable with Product with Serializable
-
case class
BundleRegistry extends HasBundleRegistry with Product with Serializable
Class for storing all supported ml.combust.bundle.op.OpNode objects.
Class for storing all supported ml.combust.bundle.op.OpNode objects.
This is the primary registry for Bundle.ML. It contains all objects required for serializing ML models, graph nodes and custom types.
Many serialization calls in Bundle.ML require access to the registry for information on how to serialize custom types or models or nodes.
-
case class
BundleWriter[Context <: HasBundleRegistry, Transformer <: AnyRef](root: Transformer, name: Option[String] = None, format: SerializationFormat = SerializationFormat.Json, meta: Option[Attributes] = None) extends Product with Serializable
Created by hollinwilkins on 12/24/16.
-
trait
HasBundleRegistry extends AnyRef
Trait for classes that contain a bundle registry.
Trait for classes that contain a bundle registry.
This is used by methods that require access to a bundle registry.
Value Members
-
object
BundleFile extends Serializable
Created by hollinwilkins on 12/24/16.
- object BundleRegistry extends Serializable