MatrixFactorizationModelParameters 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
的 MatrixFactorizationTrainer模型参数 。
public sealed class MatrixFactorizationModelParameters : Microsoft.ML.ICanSaveModel
type MatrixFactorizationModelParameters = class
interface ICanSaveModel
Public NotInheritable Class MatrixFactorizationModelParameters
Implements ICanSaveModel
- 继承
-
MatrixFactorizationModelParameters
- 实现
注解
MatrixFactorizationModelParameters 存储两个因子矩阵(P 和 Q),用于近似训练矩阵 R(按 P * Q),其中 *是矩阵乘法。 此模型需要两个输入、行索引和列索引,并在 R 中由两个输入指定的位置生成 (近似) 值。更具体地说,如果输入行和列索引是你和 v,分别。 输出 (标量) 将是 P 中的第一行的内部乘积,Q 中的第 v 列。
字段
ApproximationRank |
因子矩阵的排名。 |
NumberOfColumns |
列数。 |
NumberOfRows |
行数。 |
属性
LeftFactorMatrix |
左近似矩阵 |
RightFactorMatrix |
右近似矩阵 |
显式接口实现
ICanSaveModel.Save(ModelSaveContext) |
将模型保存到给定上下文 |