次の方法で共有


PoissonLoss クラス

定義

ポアソン回帰のポアソン損失関数。

public sealed class PoissonLoss : Microsoft.ML.Trainers.ILossFunction<float,float>, Microsoft.ML.Trainers.IRegressionLoss
type PoissonLoss = class
    interface IRegressionLoss
    interface IScalarLoss
    interface ILossFunction<single, single>
Public NotInheritable Class PoissonLoss
Implements ILossFunction(Of Single, Single), IRegressionLoss
継承
PoissonLoss
実装

注釈

ポアソン損失関数は、次のように定義されます。

$L(\hat{y}, y) = e^{\hat{y}} - y\hat{y}$

ここで、$\hat{y}$ は予測値、$y$ は真のラベルです。

コンストラクター

PoissonLoss()

ポアソン回帰のポアソン損失関数。

メソッド

Derivative(Single, Single)

ポアソン回帰のポアソン損失関数。

Loss(Single, Single)

ポアソン回帰のポアソン損失関数。

適用対象