3 instantiations of CustomProperty
Microsoft.ML.AutoML (1)
TrainerExtensions\TrainerExtensionUtil.cs (1)
174var 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)
174var boosterCustomProp = new CustomProperty("GradientBooster.Options", boosterProps); 230var treeProps = ((CustomProperty)props[LightGbmBoosterPropName]).Properties;
Microsoft.ML.CodeGenerator (4)
CodeGenerator\CSharp\TrainerGeneratorBase.cs (4)
106if (type == typeof(CustomProperty)) 145if (kv.Value.GetType() == typeof(CustomProperty)) 146sb.Append(BuildComplexParameter(((CustomProperty)kv.Value).Name, ((CustomProperty)kv.Value).Properties, "="));