共用方式為


MatrixFactorizationModelParameters 類別

定義

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 中第 u 列的內部乘積,以及 Q 中第 v 個數據行的內部乘積。

欄位

ApproximationRank

因數矩陣的排名。

NumberOfColumns

行數。

NumberOfRows

列的數目。

屬性

LeftFactorMatrix

左近似值矩陣

RightFactorMatrix

右近似值矩陣

明確介面實作

ICanSaveModel.Save(ModelSaveContext)

將模型儲存至指定的內容

適用於