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
/// Extra feature column names. The column named <see cref="LearnerInputBase.FeatureColumn"/> stores features from the first field.
47
-
/// The i-th string in <see cref="ExtraFeatureColumns"/> stores the name of the (i+1)-th field's feature column.
48
-
/// </summary>
49
-
[Argument(ArgumentType.AtMostOnce,HelpText="Extra columns to use for feature vectors. The i-th specified string denotes the column containing features form the (i+1)-th field."+
50
-
" Note that the first field is specified by \"feat\" instead of \"exfeat\".",
@@ -74,6 +65,15 @@ public sealed class Arguments : LearnerInputBaseWithWeight
74
65
[Argument(ArgumentType.AtMostOnce,HelpText="Whether to normalize the input vectors so that the concatenation of all fields' feature vectors is unit-length",ShortName="norm",SortOrder=6)]
75
66
publicboolNorm=true;
76
67
68
+
/// <summary>
69
+
/// Extra feature column names. The column named <see cref="LearnerInputBase.FeatureColumn"/> stores features from the first field.
70
+
/// The i-th string in <see cref="ExtraFeatureColumns"/> stores the name of the (i+1)-th field's feature column.
71
+
/// </summary>
72
+
[Argument(ArgumentType.Multiple,HelpText="Extra columns to use for feature vectors. The i-th specified string denotes the column containing features form the (i+1)-th field."+
73
+
" Note that the first field is specified by \"feat\" instead of \"exfeat\".",
74
+
ShortName="exfeat",SortOrder=7)]
75
+
publicstring[]ExtraFeatureColumns;
76
+
77
77
[Argument(ArgumentType.AtMostOnce,HelpText="Whether to shuffle for each training iteration",ShortName="shuf",SortOrder=90)]
78
78
publicboolShuffle=true;
79
79
@@ -139,7 +139,7 @@ public FieldAwareFactorizationMachineTrainer(IHostEnvironment env, Arguments arg
Copy file name to clipboardExpand all lines: test/BaselineOutput/Common/EntryPoints/core_manifest.json
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -10146,21 +10146,6 @@
10146
10146
"SortOrder": 1.0,
10147
10147
"IsNullable": false
10148
10148
},
10149
-
{
10150
-
"Name": "ExtraFeatureColumns",
10151
-
"Type": {
10152
-
"Kind": "Array",
10153
-
"ItemType": "String"
10154
-
},
10155
-
"Desc": "Extra columns to use for feature vectors. The i-th specified string denotes the column containing features form the (i+1)-th field. Note that the first field is specified by \"feat\" instead of \"exfeat\".",
10156
-
"Aliases": [
10157
-
"exfeat"
10158
-
],
10159
-
"Required": false,
10160
-
"SortOrder": 2.0,
10161
-
"IsNullable": false,
10162
-
"Default": []
10163
-
},
10164
10149
{
10165
10150
"Name": "Iters",
10166
10151
"Type": "Int",
@@ -10319,6 +10304,21 @@
10319
10304
"IsNullable": false,
10320
10305
"Default": "Auto"
10321
10306
},
10307
+
{
10308
+
"Name": "ExtraFeatureColumns",
10309
+
"Type": {
10310
+
"Kind": "Array",
10311
+
"ItemType": "String"
10312
+
},
10313
+
"Desc": "Extra columns to use for feature vectors. The i-th specified string denotes the column containing features form the (i+1)-th field. Note that the first field is specified by \"feat\" instead of \"exfeat\".",
0 commit comments