9 instantiations of BooleanChoiceAttribute
Microsoft.ML.AutoML.Samples (1)
Sweepable\SearchSpaceExample.cs (1)
51[BooleanChoice]
Microsoft.ML.AutoML.Tests (1)
GridSearchTunerTests.cs (1)
69[BooleanChoice]
Microsoft.ML.SearchSpace.Tests (1)
SearchSpaceTest.cs (1)
344[BooleanChoice(true)]
Microsoft.ML.StandardTrainers (6)
LdSvm\LdSvmTrainer.cs (1)
125[BooleanChoice(true)]
Standard\LogisticRegression\LbfgsPredictorBase.cs (2)
134[BooleanChoice] 141[BooleanChoice]
Standard\Online\AveragedLinear.cs (1)
43[BooleanChoice]
Standard\Online\LinearSvm.cs (2)
96[BooleanChoice(defaultValue: false)] 101[BooleanChoice(defaultValue: false)]
8 references to BooleanChoiceAttribute
Microsoft.ML.Core (2)
SearchSpace\BoolearnChoiceAttribute.cs (2)
16/// Create a <see cref="BooleanChoiceAttribute"/>. 24/// Create a <see cref="BooleanChoiceAttribute"/> with default value.
Microsoft.ML.SearchSpace (6)
Assembly.cs (1)
11[assembly: TypeForwardedTo(typeof(Microsoft.ML.SearchSpace.BooleanChoiceAttribute))]
SearchSpace.cs (5)
202var booleanChoiceAttributes = field.GetCustomAttributes(typeof(BooleanChoiceAttribute), false); 228BooleanChoiceAttribute booleanChoice => new ChoiceOption(new object[] { true, false }, defaultChoice: booleanChoice.DefaultValue), 249var booleanChoiceAttributes = property.GetCustomAttributes(typeof(BooleanChoiceAttribute), false); 275BooleanChoiceAttribute booleanChoice => new ChoiceOption(new object[] { true, false }, defaultChoice: booleanChoice.DefaultValue), 289if (attribute is BooleanChoiceAttribute)