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