6 instantiations of StringParameterValue
Microsoft.ML.AutoML (6)
Sweepers\Parameters.cs (2)
463
return new
StringParameterValue
(_args.Name, _args.Values[(int)(_args.Values.Length * normalizedValue)]);
470
return new
StringParameterValue
(_args.Name, _args.Values[i]);
Sweepers\SweeperProbabilityUtils.cs (2)
148
parameters.Add(new
StringParameterValue
(sweepParams[i].Name, parameterDiscrete[hotIndex].ValueText));
153
parameters.Add(new
StringParameterValue
(sweepParams[i].Name, parameterDiscrete[(int)array[currentArrayIndex]].ValueText));
TrainerExtensions\TrainerExtensionUtil.cs (2)
204
var paramVals = props.Select(p => new
StringParameterValue
(p.Key, p.Value.ToString()));
232
parameters = allProps.Select(p => new
StringParameterValue
(p.Key, p.Value.ToString()));
3 references to StringParameterValue
Microsoft.ML.AutoML (3)
Sweepers\Parameters.cs (3)
185
var
spv = obj as
StringParameterValue
;
191
return Hashing.CombinedHash(0, typeof(
StringParameterValue
), _name, _value);