Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface Runtime<T, M>

A Runtime is used to run pipelines on a specific platform. The interface Runtime<T, M> declares APIs which the runtime implementation must or shall achieve.

Type parameters

  • T: Sample<any>

  • M: DatasetMeta

Hierarchy

  • Runtime

Index

Properties

dataset

dataset: DatasetPool<T, M>

notifyProgress

notifyProgress: (progress: ProgressInfo) => void

Type declaration

readModel

readModel: () => Promise<string>

Type declaration

    • (): Promise<string>
    • Returns Promise<string>

saveModel

saveModel: (localPathOrStream: string | ReadableStream, filename?: undefined | string) => Promise<void>

Type declaration

    • (localPathOrStream: string | ReadableStream, filename?: undefined | string): Promise<void>
    • Parameters

      • localPathOrStream: string | ReadableStream
      • Optional filename: undefined | string

      Returns Promise<void>

Generated using TypeDoc