valueType property

String? valueType
getter/setter pair

The value type of this time series.

All the values in this time series data must match this value type.

Required. Immutable. Possible string values are:

  • "VALUE_TYPE_UNSPECIFIED" : The value type is unspecified.
  • "SCALAR" : Used for TensorboardTimeSeries that is a list of scalars. E.g. accuracy of a model over epochs/time.
  • "TENSOR" : Used for TensorboardTimeSeries that is a list of tensors. E.g. histograms of weights of layer in a model over epoch/time.
  • "BLOB_SEQUENCE" : Used for TensorboardTimeSeries that is a list of blob sequences. E.g. set of sample images with labels over epochs/time.

Implementation

core.String? valueType;