2 instantiations of NestOptionAttribute
Microsoft.ML.AutoML.Samples (1)
Sweepable\SearchSpaceExample.cs (1)
57
[
NestOption
]
Microsoft.ML.SearchSpace.Tests (1)
SearchSpaceTest.cs (1)
355
[
NestOption
]
8 references to NestOptionAttribute
Microsoft.ML.Core (1)
SearchSpace\NestOptionAttribute.cs (1)
16
/// Create an <see cref="
NestOptionAttribute
"/>.
Microsoft.ML.SearchSpace (7)
Assembly.cs (1)
13
[assembly: TypeForwardedTo(typeof(Microsoft.ML.SearchSpace.
NestOptionAttribute
))]
SearchSpace.cs (6)
203
var nestOptionAttributes = field.GetCustomAttributes(typeof(
NestOptionAttribute
), false);
229
NestOptionAttribute
nest => GetSearchSpaceOptionFromType(field.FieldType),
250
var nestOptionAttributes = property.GetCustomAttributes(typeof(
NestOptionAttribute
), false);
276
NestOptionAttribute
nest => GetSearchSpaceOptionFromType(property.PropertyType),
414
/// Create <see cref="SearchSpace{T}"/> from <typeparamref name="T"/>. This initializer search for the <see cref="
NestOptionAttribute
"/> in <typeparamref name="T"/> and create searching space accordingly.
422
/// Create <see cref="SearchSpace{T}"/> from <typeparamref name="T"/> and <paramref name="defaultOption"/>. This initializer search for the <see cref="
NestOptionAttribute
"/> in <typeparamref name="T"/> and create searching space accordingly.