LinearModelParameters 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
線性模型參數的基類。
public abstract class LinearModelParameters : Microsoft.ML.Trainers.ModelParametersBase<float>, Microsoft.ML.Trainers.ICalculateFeatureContribution
type LinearModelParameters = class
inherit ModelParametersBase<single>
interface ICalculateFeatureContribution
Public MustInherit Class LinearModelParameters
Inherits ModelParametersBase(Of Single)
Implements ICalculateFeatureContribution
- 繼承
- 衍生
- 實作
屬性
Bias |
預測器的偏差詞彙。 |
Weights |
預測值的特徵權數係數。 |
明確介面實作
ICalculateFeatureContribution.FeatureContributionCalculator |
用來判斷每個功能對 範例 FeatureContributionCalculatingTransformer 分數的比重。 對於線性模型,指定特徵的貢獻等於特徵值乘以對應權數的乘積。 |
ICanSaveModel.Save(ModelSaveContext) |
線性模型參數的基類。 (繼承來源 ModelParametersBase<TOutput>) |