7 writes to DecimalMarker
Microsoft.ML.Tests (7)
TextLoaderTests.cs (7)
901DecimalMarker = '.' 942options.DecimalMarker = ','; 950options.DecimalMarker = ','; 1000options.DecimalMarker = ','; // Choose wrong decimal marker on purpose 1005options.DecimalMarker = '.'; // Choose wrong decimal marker on purpose 1048DecimalMarker = '.' 1058DecimalMarker = ','
6 references to DecimalMarker
Microsoft.ML.Data (6)
DataLoadSave\Text\TextLoader.cs (6)
1243if (options.DecimalMarker != '.' && options.DecimalMarker != ',') 1244throw _host.ExceptUserArg(nameof(Options.DecimalMarker), "Decimal marker cannot be the '{0}' character. It must be '.' or ','.", options.DecimalMarker); 1245if (!options.AllowQuoting && options.DecimalMarker == ',' && _separators.Contains(',')) 1247_decimalMarker = options.DecimalMarker;