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>) |