GoogleCloudMlV1HyperparameterOutputHyperparameterMetric.fromJson constructor

GoogleCloudMlV1HyperparameterOutputHyperparameterMetric.fromJson(
  1. Map json_
)

Implementation

GoogleCloudMlV1HyperparameterOutputHyperparameterMetric.fromJson(
    core.Map json_)
    : this(
        objectiveValue: json_.containsKey('objectiveValue')
            ? (json_['objectiveValue'] as core.num).toDouble()
            : null,
        trainingStep: json_.containsKey('trainingStep')
            ? json_['trainingStep'] as core.String
            : null,
      );