package events

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. case class AudioEventRecord(wallTime: Double, step: Long, value: AudioValue) extends EventRecord[AudioValue] with Product with Serializable
  2. case class AudioValue(encodedAudio: ByteString, contentType: String, sampleRate: Float, numChannels: Long, lengthFrames: Long) extends Product with Serializable
  3. case class CompressedHistogramEventRecord(wallTime: Double, step: Long, value: Seq[HistogramValue]) extends EventRecord[Seq[HistogramValue]] with Product with Serializable
  4. case class EventAccumulator(path: Path, sizeGuidance: Map[EventType, Int] = EventAccumulator.DEFAULT_SIZE_GUIDANCE, histogramCompressionBps: Seq[Int] = EventAccumulator.DEFAULT_HISTOGRAM_COMPRESSION_BPS, purgeOrphanedData: Boolean = true) extends Product with Serializable
  5. case class EventFileReader(filePath: Path, compressionType: CompressionType = NoCompression) extends Loader[Event] with Product with Serializable
  6. class EventFileWriter extends AnyRef
  7. case class EventMultiplexer(initialRunPaths: Map[String, Path] = Map.empty[String, Path], sizeGuidance: Map[EventType, Int] = EventAccumulator.DEFAULT_SIZE_GUIDANCE, histogramCompressionBps: Seq[Int] = EventAccumulator.DEFAULT_HISTOGRAM_COMPRESSION_BPS, purgeOrphanedData: Boolean = true) extends Product with Serializable
  8. trait EventRecord[T] extends AnyRef
  9. sealed trait EventType extends AnyRef
  10. case class HistogramEventRecord(wallTime: Double, step: Long, value: HistogramValue) extends EventRecord[HistogramValue] with Product with Serializable
  11. case class HistogramValue(min: Double, max: Double, num: Double, sum: Double, sumSquares: Double, bucketLimits: Seq[Double], buckets: Seq[Double]) extends Product with Serializable
  12. case class ImageEventRecord(wallTime: Double, step: Long, value: ImageValue) extends EventRecord[ImageValue] with Product with Serializable
  13. case class ImageValue(encodedImage: ByteString, width: Int, height: Int, colorSpace: Int) extends Product with Serializable
  14. case class ScalarEventRecord(wallTime: Double, step: Long, value: Float) extends EventRecord[Float] with Product with Serializable
  15. class SummaryFileWriter extends EventFileWriter
  16. case class TensorEventRecord(wallTime: Double, step: Long, value: TensorProto) extends EventRecord[TensorProto] with Product with Serializable

Value Members

  1. case object AudioEventType extends EventType with Product with Serializable
  2. case object CompressedHistogramEventType extends EventType with Product with Serializable
  3. object EventAccumulator extends Serializable
  4. object EventFileWriter
  5. object EventMultiplexer extends Serializable
  6. object EventPluginUtilities
  7. case object GraphEventType extends EventType with Product with Serializable
  8. case object HistogramEventType extends EventType with Product with Serializable
  9. case object ImageEventType extends EventType with Product with Serializable
  10. case object MetaGraphEventType extends EventType with Product with Serializable
  11. case object RunMetadataEventType extends EventType with Product with Serializable
  12. case object ScalarEventType extends EventType with Product with Serializable
  13. object SummaryFileWriter
  14. object SummaryFileWriterCache
  15. case object TensorEventType extends EventType with Product with Serializable

Ungrouped