ContinuousParameterRange.fromJson constructor
Implementation
factory ContinuousParameterRange.fromJson(Map<String, dynamic> json) {
return ContinuousParameterRange(
maxValue: json['MaxValue'] as String,
minValue: json['MinValue'] as String,
name: json['Name'] as String,
scalingType:
(json['ScalingType'] as String?)?.toHyperParameterScalingType(),
);
}