6 references to MLContext
Microsoft.Extensions.ML (5)
MLOptions.cs (2)
26/// The <see cref="MLContext "/> which all the ML.NET operations happen. 57options.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)
28Context = contextOptions.Value.MLContext ?? throw new ArgumentNullException(nameof(contextOptions));
Microsoft.Extensions.ML.Tests (1)
FileLoaderTests.cs (1)
51var context = sp.GetRequiredService<IOptions<MLOptions>>().Value.MLContext;