18 references to
Microsoft.ML.AutoML (2)
Sweepers\SmacSweeper.cs (1)
270IParameterValue pset = parent[sweepParam.Name];
Sweepers\SweeperProbabilityUtils.cs (1)
77var pset = ps[sweepParam.Name];
Microsoft.ML.AutoML.Tests (16)
SweeperTests.cs (11)
60float x1 = float.Parse(p["float"].ValueText); 61float x2 = float.Parse(p["floatLog"].ValueText); 62long x3 = long.Parse(p["long"].ValueText); 63long x4 = long.Parse(p["longLog"].ValueText); 64int x5 = int.Parse(p["discrete"].ValueText); 114float x1 = (p["x1"] as FloatParameterValue).Value; 115float x2 = (p["x2"] as FloatParameterValue).Value; 116float x3 = (p["x3"] as FloatParameterValue).Value; 117float x4 = (p["x4"] as FloatParameterValue).Value; 166foo = (p["foo"] as FloatParameterValue).Value; 167bar = (p["bar"] as LongParameterValue).Value;
TrainerExtensionsTests.cs (5)
333Assert.Equal("1", paramSet["NumberOfIterations"].ValueText); 334Assert.Equal("1", paramSet["LearningRate"].ValueText); 335Assert.Equal("1", paramSet["L2Regularization"].ValueText); 336Assert.Equal("1", paramSet["L1Regularization"].ValueText); 351Assert.Equal("1", sdcaParams["LearningRate"].ValueText);