Packages

package config

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait CheckpointConfig extends AnyRef
  2. case class ClusterConfig(jobSpecs: Map[String, JobConfig]) extends Serializable with Product with Serializable
  3. case class JobConfig(tasks: TreeMap[Int, String]) extends Product with Serializable
  4. case class StepBasedCheckpoints(steps: Int = 1000, maxCheckpointsToKeep: Int = 5, keepCheckpointEveryNHours: Int = 10000) extends CheckpointConfig with Product with Serializable
  5. case class StepBasedSummaries(steps: Int = 1000) extends SummaryConfig with Product with Serializable
  6. sealed trait SummaryConfig extends AnyRef
  7. case class TensorBoardConfig(logDir: Path, host: String = "localhost", port: Int = 6006, reloadInterval: Int = 5) extends Product with Serializable
  8. case class TimeBasedCheckpoints(seconds: Int = 600, maxCheckpointsToKeep: Int = 5, keepCheckpointEveryNHours: Int = 10000) extends CheckpointConfig with Product with Serializable
  9. case class TimeBasedSummaries(seconds: Int = 600) extends SummaryConfig with Product with Serializable

Ungrouped