9 references to MatrixRowIndexKind
Microsoft.ML.Recommender (9)
MatrixFactorizationPredictor.cs (5)
347
var matrixRowList = schema.GetColumns(RecommenderUtils.
MatrixRowIndexKind
);
348
msg = $"'{RecommenderUtils.
MatrixRowIndexKind
}' column doesn't exist or not unique";
376
yield return RecommenderUtils.
MatrixRowIndexKind
.Bind(_matrixRowIndexColumnName);
443
/// <param name="matrixRowIndexColumnName">The name of the column used as role <see cref="RecommenderUtils.
MatrixRowIndexKind
"/> in matrix factorization world</param>
473
roles.Add(new KeyValuePair<RoleMappedSchema.ColumnRole, string>(RecommenderUtils.
MatrixRowIndexKind
, MatrixRowIndexColumnName));
MatrixFactorizationTrainer.cs (1)
532
roles.Add(new KeyValuePair<RoleMappedSchema.ColumnRole, string>(RecommenderUtils.
MatrixRowIndexKind
.Value, MatrixRowIndexName));
RecommenderUtils.cs (3)
14
/// Check if the considered data, <see cref="RoleMappedData"/>, contains column roles specified by <see cref="MatrixColumnIndexKind"/> and <see cref="
MatrixRowIndexKind
"/>.
15
/// If the column roles, <see cref="MatrixColumnIndexKind"/> and <see cref="
MatrixRowIndexKind
"/>, uniquely exist in data, their <see cref="DataViewSchema.Column"/> would be assigned
26
CheckRowColumnType(data,
MatrixRowIndexKind
, out matrixRowIndexColumn, isDecode);