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)
383string 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); 388msg = 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); 406getters[0] = _parent.GetGetter(matrixColumnIndexGetter, matrixRowIndexGetter); 418public ISchemaBindableMapper Bindable => _parent;