@@ -182,12 +182,12 @@ internal FieldAwareFactorizationMachineBinaryClassificationTrainer(IHostEnvironm
182
182
/// <param name="env">The private instance of <see cref="IHostEnvironment"/>.</param>
183
183
/// <param name="featureColumnNames">The name of column hosting the features. The i-th element stores feature column of the i-th field.</param>
184
184
/// <param name="labelColumnName">The name of the label column.</param>
185
- /// <param name="weightColumnName ">The name of the weight column (optional).</param>
185
+ /// <param name="exampleWeightColumnName ">The name of the weight column (optional).</param>
186
186
[ BestFriend ]
187
187
internal FieldAwareFactorizationMachineBinaryClassificationTrainer ( IHostEnvironment env ,
188
188
string [ ] featureColumnNames ,
189
189
string labelColumnName = DefaultColumnNames . Label ,
190
- string weightColumnName = null )
190
+ string exampleWeightColumnName = null )
191
191
{
192
192
Contracts . CheckValue ( env , nameof ( env ) ) ;
193
193
_host = env . Register ( LoadName ) ;
@@ -202,7 +202,7 @@ internal FieldAwareFactorizationMachineBinaryClassificationTrainer(IHostEnvironm
202
202
FeatureColumns [ i ] = new SchemaShape . Column ( featureColumnNames [ i ] , SchemaShape . Column . VectorKind . Vector , NumberDataViewType . Single , false ) ;
203
203
204
204
LabelColumn = new SchemaShape . Column ( labelColumnName , SchemaShape . Column . VectorKind . Scalar , BooleanDataViewType . Instance , false ) ;
205
- WeightColumn = weightColumnName != null ? new SchemaShape . Column ( weightColumnName , SchemaShape . Column . VectorKind . Scalar , NumberDataViewType . Single , false ) : default ;
205
+ WeightColumn = exampleWeightColumnName != null ? new SchemaShape . Column ( exampleWeightColumnName , SchemaShape . Column . VectorKind . Scalar , NumberDataViewType . Single , false ) : default ;
206
206
}
207
207
208
208
/// <summary>
0 commit comments