125 instantiations of Options
Microsoft.ML.AutoML (4)
Microsoft.ML.AutoML.Tests (2)
Microsoft.ML.CodeGenerator.Tests (10)
Microsoft.ML.Core.Tests (2)
Microsoft.ML.Data (13)
Microsoft.ML.EntryPoints (1)
Microsoft.ML.IntegrationTests (4)
Microsoft.ML.PerformanceTests (9)
Microsoft.ML.Predictor.Tests (2)
Microsoft.ML.Samples (8)
Microsoft.ML.TensorFlow.Tests (2)
Microsoft.ML.TestFramework (2)
Microsoft.ML.Tests (60)
ImagesTests.cs (16)
34var data = TextLoader.Create(env, new TextLoader.Options()
42var invalidData = TextLoader.Create(env, new TextLoader.Options()
65var data = TextLoader.Create(env, new TextLoader.Options()
109var data = TextLoader.Create(env, new TextLoader.Options()
141var data = TextLoader.Create(env, new TextLoader.Options()
178var data = TextLoader.Create(env, new TextLoader.Options()
337var data = TextLoader.Create(env, new TextLoader.Options()
412var data = TextLoader.Create(env, new TextLoader.Options()
488var data = TextLoader.Create(env, new TextLoader.Options()
563var data = TextLoader.Create(env, new TextLoader.Options()
638var data = TextLoader.Create(env, new TextLoader.Options()
713var data = TextLoader.Create(env, new TextLoader.Options()
789var data = TextLoader.Create(env, new TextLoader.Options()
864var data = TextLoader.Create(env, new TextLoader.Options()
940var data = TextLoader.Create(env, new TextLoader.Options()
1012var data = TextLoader.Create(env, new TextLoader.Options()
Microsoft.ML.TorchSharp.Tests (5)
Microsoft.ML.Transforms (1)
72 references to Options
Microsoft.ML.AutoML (7)
Microsoft.ML.AutoML.Tests (2)
Microsoft.ML.CodeGenerator.Tests (9)
Microsoft.ML.Data (31)
DataLoadSave\Text\TextLoader.cs (20)
16[assembly: LoadableClass(TextLoader.Summary, typeof(ILegacyDataLoader), typeof(TextLoader), typeof(TextLoader.Options), typeof(SignatureDataLoader),
511/// If <see cref="TextLoader.Options.AllowQuoting"/> is false, this option is ignored.
697/// Empty if <see cref="Options.HasHeader"/> is <see langword="false"/>, no header presents, or upon load
1148internal TextLoader(IHostEnvironment env, Options options = null, IMultiStreamSource dataSample = null)
1244throw _host.ExceptUserArg(nameof(Options.DecimalMarker), "Decimal marker cannot be the '{0}' character. It must be '.' or ','.", options.DecimalMarker);
1246throw _host.ExceptUserArg(nameof(Options.AllowQuoting), "Quoting must be allowed if decimal marker and separator are the ',' character.");
1250throw _host.ExceptUserArg(nameof(Options.EscapeChar), "EscapeChar '{0}' can't be used both as EscapeChar and separator", _escapeChar);
1271_host.CheckUserArg((_flags & OptionFlags.AllowSparse) == 0, nameof(Options.Separator),
1283throw _host.ExceptUserArg(nameof(Options.Separator), "Illegal separator: '{0}'", sep);
1305/// <see cref="Options.UseThreads"/>,
1306/// <see cref="Options.HeaderFile"/>,
1307/// <see cref="Options.MaxRows"/>
1310ref Options options, out Column[] cols, out bool error)
1361var optionsNew = new Options();
1363if (!CmdParser.ParseArguments(host, loader.GetSettingsString(), optionsNew, typeof(Options), msg => ch.Error(msg)))
1386internal static bool FileContainsValidSchema(IHostEnvironment env, IMultiStreamSource files, out Options options)
1491internal static ILegacyDataLoader Create(IHostEnvironment env, Options options, IMultiStreamSource files)
1497internal static IDataView LoadFile(IHostEnvironment env, Options options, IMultiStreamSource fileSource)
1555Options options = new Options
1568Options options = null,
Microsoft.ML.EntryPoints (1)
Microsoft.ML.IntegrationTests (1)
Microsoft.ML.PerformanceTests (6)
Microsoft.ML.Samples (1)
Microsoft.ML.TestFramework (2)
Microsoft.ML.Tests (11)
Microsoft.ML.Transforms (1)