1 write to _parent
Microsoft.ML.Recommender (1)
MatrixFactorizationPredictor.cs (1)
339
_parent
= parent;
6 references to _parent
Microsoft.ML.Recommender (6)
MatrixFactorizationPredictor.cs (6)
383
string msg = string.Format("Input column index type '{0}' incompatible with predictor's column index type '{1}'", type,
_parent
.MatrixColumnIndexType);
384
_env.CheckParam(type.Equals(
_parent
.MatrixColumnIndexType), nameof(schema), msg);
388
msg = string.Format("Input row index type '{0}' incompatible with predictor' row index type '{1}'", type,
_parent
.MatrixRowIndexType);
389
_env.CheckParam(type.Equals(
_parent
.MatrixRowIndexType), nameof(schema), msg);
406
getters[0] =
_parent
.GetGetter(matrixColumnIndexGetter, matrixRowIndexGetter);
418
public ISchemaBindableMapper Bindable =>
_parent
;