30 writes to AllowQuoting
Microsoft.ML.AutoML (4)
ColumnInference\ColumnInferenceApi.cs (2)
57AllowQuoting = splitInference.AllowQuote, 92AllowQuoting = splitInference.AllowQuote,
ColumnInference\ColumnTypeInference.cs (1)
265AllowQuoting = args.AllowQuote,
ColumnInference\TextFileContents.cs (1)
72AllowQuoting = perm._allowQuote,
Microsoft.ML.CodeGenerator.Tests (10)
ApprovalTests\ConsoleCodeGeneratorTests.cs (9)
576AllowQuoting = true, 618AllowQuoting = true, 655AllowQuoting = true, 704AllowQuoting = true, 746AllowQuoting = true, 793AllowQuoting = true, 837AllowQuoting = true, 1005AllowQuoting = true, 1113AllowQuoting = true,
CodeGenTests.cs (1)
103AllowQuoting = false,
Microsoft.ML.Core.Tests (1)
UnitTests\TestEntryPoints.cs (1)
1364AllowQuoting = true,
Microsoft.ML.Data (3)
DataLoadSave\Text\TextLoader.cs (1)
1559AllowQuoting = allowQuoting,
DataLoadSave\Text\TextLoaderSaverCatalog.cs (2)
66AllowQuoting = allowQuoting, 176AllowQuoting = allowQuoting,
Microsoft.ML.PerformanceTests (3)
FeaturizeTextBench.cs (1)
44AllowQuoting = true
StochasticDualCoordinateAscentClassifierBench.cs (1)
97AllowQuoting = false,
TextLoaderBench.cs (1)
47AllowQuoting = true,
Microsoft.ML.TestFramework (1)
DataPipe\TestDataPipeBase.cs (1)
415var args = new TextLoader.Options() { AllowSparse = true, AllowQuoting = true };
Microsoft.ML.Tests (8)
TextLoaderTests.cs (7)
746dataIris = mlContext.Data.CreateTextLoader<Iris>(new TextLoader.Options() { Separator = ",", AllowQuoting = false }).Load(dataPath); 767dataIrisStartEnd = mlContext.Data.CreateTextLoader<IrisStartEnd>(new TextLoader.Options() { Separator = ",", AllowQuoting = false }).Load(dataPath); 789dataIrisColumnIndices = mlContext.Data.CreateTextLoader<IrisColumnIndices>(new TextLoader.Options() { Separator = ",", AllowQuoting = false }).Load(dataPath); 944options.AllowQuoting = true; 1281AllowQuoting = true, 1393AllowQuoting = true, 1433AllowQuoting = true,
TrainerEstimators\TrainerEstimators.cs (1)
194AllowQuoting = true,
10 references to AllowQuoting
Microsoft.ML.AutoML (1)
ColumnInference\TextFileContents.cs (1)
119result = new ColumnSplitResult(true, options.Separators.First(), options.AllowQuoting, options.ReadMultilines, options.AllowSparse, mostCommon.Key);
Microsoft.ML.CodeGenerator (4)
CodeGenerator\CSharp\AzureCodeGenerator\AzureAttachConsoleAppCodeGenerator.cs (2)
53AllowQuoting = _columnInferenceResult.TextLoaderOptions.AllowQuoting, 92AllowQuoting = _columnInferenceResult.TextLoaderOptions.AllowQuoting,
CodeGenerator\CSharp\CodeGenerator.cs (2)
355AllowQuoting = _columnInferenceResult.TextLoaderOptions.AllowQuoting, 378AllowQuoting = _columnInferenceResult.TextLoaderOptions.AllowQuoting,
Microsoft.ML.Data (5)
DataLoadSave\Text\TextLoader.cs (5)
511/// If <see cref="TextLoader.Options.AllowQuoting"/> is false, this option is ignored. 1187if (options.AllowQuoting) 1191if (options.AllowQuoting && options.ReadMultilines) 1245if (!options.AllowQuoting && options.DecimalMarker == ',' && _separators.Contains(',')) 1246throw _host.ExceptUserArg(nameof(Options.AllowQuoting), "Quoting must be allowed if decimal marker and separator are the ',' character.");