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
The ordering of parameters for the Matrix Factorization constructor is inconsistent with other trainers, specifically the Label column should be first before the matrixColumnIndex and matrixRowIndex as the matrixColumnIndex and matrixRowIndex are the feature columns:
/// <summary>/// Initializing a new instance of <see cref="MatrixFactorizationTrainer"/>./// </summary>/// <param name="env">The private instance of <see cref="IHostEnvironment"/>.</param>/// <param name="matrixColumnIndexColumnName">The name of the column hosting the matrix's column IDs.</param>/// <param name="matrixRowIndexColumnName">The name of the column hosting the matrix's row IDs.</param>/// <param name="labelColumn">The name of the label column.</param>/// <param name="advancedSettings">A delegate to apply all the advanced arguments to the algorithm.</param>publicMatrixFactorizationTrainer(IHostEnvironment env,string matrixColumnIndexColumnName,string matrixRowIndexColumnName,string labelColumn = DefaultColumnNames.Label,Action<Arguments> advancedSettings =null):base(env,LoadNameValue)
Where other trainers have the label column argument followed by feature column:
Uh oh!
There was an error while loading. Please reload this page.
The ordering of parameters for the Matrix Factorization constructor is inconsistent with other trainers, specifically the Label column should be first before the matrixColumnIndex and matrixRowIndex as the matrixColumnIndex and matrixRowIndex are the feature columns:
Where other trainers have the label column argument followed by feature column:
The text was updated successfully, but these errors were encountered: