3 instantiations of CustomProperty
Microsoft.ML.AutoML (1)
TrainerExtensions\TrainerExtensionUtil.cs (1)
174
var boosterCustomProp = new
CustomProperty
("GradientBooster.Options", boosterProps);
Microsoft.ML.AutoML.Tests (1)
TrainerExtensionsTests.cs (1)
316
{"Booster", new
CustomProperty
() {
Microsoft.ML.CodeGenerator.Tests (1)
CodeGenTests.cs (1)
125
{"Booster", new
CustomProperty
(){Properties= new Dictionary<string, object>(), Name = "TreeBooster"} },
6 references to CustomProperty
Microsoft.ML.AutoML (2)
TrainerExtensions\TrainerExtensionUtil.cs (2)
174
var
boosterCustomProp = new CustomProperty("GradientBooster.Options", boosterProps);
230
var treeProps = ((
CustomProperty
)props[LightGbmBoosterPropName]).Properties;
Microsoft.ML.CodeGenerator (4)
CodeGenerator\CSharp\TrainerGeneratorBase.cs (4)
106
if (type == typeof(
CustomProperty
))
145
if (kv.Value.GetType() == typeof(
CustomProperty
))
146
sb.Append(BuildComplexParameter(((
CustomProperty
)kv.Value).Name, ((
CustomProperty
)kv.Value).Properties, "="));