29 writes to Separators
Microsoft.ML.AutoML (4)
ColumnInference\ColumnInferenceApi.cs (2)
55Separators = new[] { splitInference.Separator.Value }, 94Separators = new char[] { splitInference.Separator.Value },
ColumnInference\ColumnTypeInference.cs (1)
263Separators = new[] { args.Separator },
ColumnInference\TextFileContents.cs (1)
71Separators = new[] { perm._sep },
Microsoft.ML.CodeGenerator.Tests (10)
ApprovalTests\ConsoleCodeGeneratorTests.cs (9)
579Separators = new[] { ',' } 621Separators = new[] { ',' } 658Separators = new[] { ',' } 707Separators = new[] { '\t' } 749Separators = new[] { ',' } 796Separators = new[] { '\t' } 840Separators = new[] { ',' } 1008Separators = new[] { ',' } 1116Separators = new[] { ',' }
CodeGenTests.cs (1)
105Separators = new[] { ',' },
Microsoft.ML.Data (3)
DataLoadSave\Text\TextLoader.cs (1)
1558Separators = new[] { separator },
DataLoadSave\Text\TextLoaderSaverCatalog.cs (2)
64Separators = new[] { separatorChar }, 174Separators = new[] { separatorChar },
Microsoft.ML.IntegrationTests (2)
Prediction.cs (1)
43Separators = new[] { TestDatasets.Sentiment.fileSeparator }
Validation.cs (1)
75Separators = new[] { '\t' },
Microsoft.ML.PerformanceTests (3)
FeaturizeTextBench.cs (1)
43Separators = new char[] { ',' },
RffTransform.cs (1)
40Separators = new[] { ',' }
TextLoaderBench.cs (1)
46Separators = new char[] { ',' },
Microsoft.ML.Samples (2)
Dynamic\Trainers\Regression\OrdinaryLeastSquaresAdvanced.cs (1)
34Separators = new[] { '\t' },
Dynamic\Trainers\Regression\OrdinaryLeastSquaresWithOptionsAdvanced.cs (1)
34Separators = new[] { '\t' },
Microsoft.ML.Tests (1)
TrainerEstimators\MetalinearEstimators.cs (1)
81Separators = new[] { ',' },
Microsoft.ML.TorchSharp.Tests (3)
NerTests.cs (1)
213Separators = new char[] { '\t' },
QATests.cs (1)
83Separators = new[] { '\t' },
TextClassificationTests.cs (1)
426Separators = new[] { ',' },
Microsoft.ML.Transforms (1)
Text\StopWordsRemovingTransformer.cs (1)
818Separators = new[] { ',' },
8 references to Separators
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)
51Separator = _columnInferenceResult.TextLoaderOptions.Separators.FirstOrDefault(), 95Separator = _columnInferenceResult.TextLoaderOptions.Separators.FirstOrDefault(),
CodeGenerator\CSharp\CodeGenerator.cs (2)
354Separator = _columnInferenceResult.TextLoaderOptions.Separators.FirstOrDefault(), 377Separator = _columnInferenceResult.TextLoaderOptions.Separators.FirstOrDefault(),
Microsoft.ML.Data (3)
DataLoadSave\Text\TextLoader.cs (3)
1211if (options.Separators.Length > 1 || options.Separators[0] != '\t') 1214foreach (char c in options.Separators)