toHyperParameterTuningJobWarmStartType method

HyperParameterTuningJobWarmStartType toHyperParameterTuningJobWarmStartType()

Implementation

HyperParameterTuningJobWarmStartType
    toHyperParameterTuningJobWarmStartType() {
  switch (this) {
    case 'IdenticalDataAndAlgorithm':
      return HyperParameterTuningJobWarmStartType.identicalDataAndAlgorithm;
    case 'TransferLearning':
      return HyperParameterTuningJobWarmStartType.transferLearning;
  }
  throw Exception(
      '$this is not known in enum HyperParameterTuningJobWarmStartType');
}