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
/// Convenience constructor for public facing API.
26
+
/// </summary>
27
+
/// <param name="env">Host Environment.</param>
28
+
/// <param name="name">Name of the output column.</param>
29
+
/// <param name="source">Name of the column to be transformed. If this is null '<paramref name="name"/>' will be used.</param>
30
+
/// <param name="maxNumTerms">Maximum number of terms to keep per column when auto-training.</param>
31
+
/// <param name="sort">How items should be ordered when vectorized. By default, they will be in the order encountered.
32
+
/// If by value items are sorted according to their default comparison, e.g., text sorting will be case sensitive (e.g., 'A' then 'Z' then 'a').</param>
[Argument(ArgumentType.AtMostOnce,HelpText="Comma separated list of terms",SortOrder=105,Visibility=ArgumentAttribute.VisibilityType.CmdLineOnly)]
116
110
publicstringTerms;
@@ -134,7 +128,7 @@ public abstract class ArgumentsBase : TransformInputBase
134
128
// REVIEW: Should we always sort? Opinions are mixed. See work item 7797429.
135
129
[Argument(ArgumentType.AtMostOnce,HelpText="How items should be ordered when vectorized. By default, they will be in the order encountered. "+
136
130
"If by value items are sorted according to their default comparison, e.g., text sorting will be case sensitive (e.g., 'A' then 'Z' then 'a').",SortOrder=113)]
137
-
publicSortOrderSort=Defaults.Sort;
131
+
publicSortOrderSort=TermEstimator.Defaults.Sort;
138
132
139
133
// REVIEW: Should we do this here, or correct the various pieces of code here and in MRS etc. that
140
134
// assume key-values will be string? Once we correct these things perhaps we can see about removing it.
/// If by value items are sorted according to their default comparison, e.g., text sorting will be case sensitive (e.g., 'A' then 'Z' then 'a').</param>
0 commit comments