You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Microsoft.ML.Data/DataLoadSave/Text/TextLoader.cs
+23-11Lines changed: 23 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1013,23 +1013,27 @@ private bool HasHeader
1013
1013
/// <param name="env">The environment to use.</param>
1014
1014
/// <param name="columns">Defines a mapping between input columns in the file and IDataView columns.</param>
1015
1015
/// <param name="hasHeader">Whether the file has a header.</param>
1016
-
/// <param name="separatorChars">Defines the characters used as separators between data points in a row. By default the tab character is taken as separator.</param>
1017
-
/// <param name="advancedSettings">A delegate to apply all the advanced arguments to the algorithm.</param>
1016
+
/// <param name="separatorChar"> The character used as separator between data points in a row. By default the tab character is used as separator.</param>
1018
1017
/// <param name="dataSample">Allows to expose items that can be used for reading.</param>
/// <param name="env">The environment to use.</param>
1318
1322
/// <param name="columns">Defines a mapping between input columns in the file and IDataView columns.</param>
1319
1323
/// <param name="hasHeader">Whether the file has a header.</param>
1320
-
/// <param name="separatorChars">Defines the characters used as separators between data points in a row. By default the tab character is taken as separator.</param>
1321
-
/// <param name="advancedSettings">A delegate to apply all the advanced arguments to the algorithm.</param>
1324
+
/// <param name="separatorChar"> The character used as separator between data points in a row. By default the tab character is used as separator.</param>
1325
+
/// <param name="fileSource">Specifies a file from which to read.</param>
Copy file name to clipboardExpand all lines: src/Microsoft.ML.Data/DataLoadSave/Text/TextLoaderSaverCatalog.cs
+34-9Lines changed: 34 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -14,38 +14,63 @@ namespace Microsoft.ML
14
14
publicstaticclassTextLoaderSaverCatalog
15
15
{
16
16
/// <summary>
17
-
/// Create a text reader.
17
+
/// Create a text reader <see cref="TextLoader"/>.
18
18
/// </summary>
19
19
/// <param name="catalog">The catalog.</param>
20
20
/// <param name="columns">The columns of the schema.</param>
21
21
/// <param name="hasHeader">Whether the file has a header.</param>
22
-
/// <param name="separatorChars">Defines the characters used as separators between data points in a row. By default the tab character is taken as separator.</param>
23
-
/// <param name="advancedSettings">The delegate to set additional settings.</param>
22
+
/// <param name="separatorChar"> The character used as separator between data points in a row. By default the tab character is used as separator.</param>
24
23
/// <param name="dataSample">The optional location of a data sample.</param>
/// Read a data view from a text file using <see cref="TextLoader"/>.
31
39
/// </summary>
32
40
/// <param name="catalog">The catalog.</param>
33
41
/// <param name="columns">The columns of the schema.</param>
34
42
/// <param name="hasHeader">Whether the file has a header.</param>
35
-
/// <param name="separatorChars">Defines the characters used as separators between data points in a row. By default the tab character is taken as separator.</param>
36
-
/// <param name="advancedSettings">The delegate to set additional settings.</param>
43
+
/// <param name="separatorChar"> The character used as separator between data points in a row. By default the tab character is used as separator.</param>
37
44
/// <param name="path">The path to the file.</param>
0 commit comments