9 references to MatrixRowIndexKind
Microsoft.ML.Recommender (9)
MatrixFactorizationPredictor.cs (5)
347var matrixRowList = schema.GetColumns(RecommenderUtils.MatrixRowIndexKind); 348msg = $"'{RecommenderUtils.MatrixRowIndexKind}' column doesn't exist or not unique"; 376yield 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> 473roles.Add(new KeyValuePair<RoleMappedSchema.ColumnRole, string>(RecommenderUtils.MatrixRowIndexKind, MatrixRowIndexColumnName));
MatrixFactorizationTrainer.cs (1)
532roles.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 26CheckRowColumnType(data, MatrixRowIndexKind, out matrixRowIndexColumn, isDecode);