6 references to MLContext
Microsoft.Extensions.ML (5)
MLOptions.cs (2)
26
/// The <see cref="
MLContext
"/> which all the ML.NET operations happen.
57
options.
MLContext
.Log += Log;
ModelLoaders\FileModelLoader.cs (1)
31
_context = contextOptions.Value?.
MLContext
?? throw new ArgumentNullException(nameof(contextOptions));
ModelLoaders\UriModelLoader.cs (1)
38
_context = contextOptions.Value?.
MLContext
;
PoolLoader.cs (1)
28
Context = contextOptions.Value.
MLContext
?? throw new ArgumentNullException(nameof(contextOptions));
Microsoft.Extensions.ML.Tests (1)
FileLoaderTests.cs (1)
51
var context = sp.GetRequiredService<IOptions<MLOptions>>().Value.
MLContext
;