9 references to MatrixColumnIndexKind
Microsoft.ML.Recommender (9)
MatrixFactorizationPredictor.cs (5)
342var matrixColumnList = schema.GetColumns(RecommenderUtils.MatrixColumnIndexKind); 343string msg = $"'{RecommenderUtils.MatrixColumnIndexKind}' column doesn't exist or not unique"; 375yield return RecommenderUtils.MatrixColumnIndexKind.Bind(_matrixColumnIndexColumnName); 442/// <param name="matrixColumnIndexColumnName">The name of the column used as role <see cref="RecommenderUtils.MatrixColumnIndexKind"/> in matrix factorization world</param> 472roles.Add(new KeyValuePair<RoleMappedSchema.ColumnRole, string>(RecommenderUtils.MatrixColumnIndexKind, MatrixColumnIndexColumnName));
MatrixFactorizationTrainer.cs (1)
531roles.Add(new KeyValuePair<RoleMappedSchema.ColumnRole, string>(RecommenderUtils.MatrixColumnIndexKind.Value, MatrixColumnIndexName));
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 25CheckRowColumnType(data, MatrixColumnIndexKind, out matrixColumnIndexColumn, isDecode);