PoissonLoss クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ポアソン回帰のポアソン損失関数。
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) |
ポアソン回帰のポアソン損失関数。 |