We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1fa09b commit 392cee6Copy full SHA for 392cee6
src/Microsoft.ML.Data/Commands/DefaultColumnNames.cs
@@ -4,7 +4,13 @@
4
5
namespace Microsoft.ML.Data
6
{
7
- public static class DefaultColumnNames
+ /// <summary>
8
+ /// A set of string literals intended to be "canonical" names for column names intended for particular purpose.
9
+ /// While not part of the public API surface, its primary purpose is intended to be used in such a way as to encourage
10
+ /// uniformity on the public API surface, wherever it is judged where columns with default names should be consumed.
11
+ /// </summary>
12
+ [BestFriend]
13
+ internal static class DefaultColumnNames
14
15
public const string Features = "Features";
16
public const string Label = "Label";
0 commit comments