テンソルフロー::作戦::ランダムガンマ

#include <random_ops.h>

アルファで記述されたガンマ分布からランダムな値を出力します。

まとめ

この操作は、Marsaglia らによるアルゴリズムを使用します。一様確率変数と正規確率変数のペアから変換拒否を介してサンプルを取得します。 http://dl.acm.org/quote.cfm?id=358414を参照してください。

引数:

  • スコープ:スコープオブジェクト
  • 形状: 1 次元整数テンソル。アルファで与えられる形状パラメーターによって記述される各分布から抽出される独立したサンプルの形状。
  • alpha: 各スカラーが関連するガンマ分布を記述する「形状」パラメーターであるテンソル。

オプションの属性 ( Attrsを参照):

  • シード: seedまたはseed2いずれかが 0 以外に設定されている場合、乱数ジェネレーターには指定されたシードがシードされます。それ以外の場合は、ランダム シードによってシードされます。
  • シード2: シードの衝突を避けるための 2 番目のシード。

戻り値:

  • Output : 形状shape + shape(alpha)を持つテンソル。各スライス[:, ..., :, i0, i1, ...iN] alpha[i0, i1, ...iN]に対して描画されたサンプルが含まれています。出力の dtype は、alpha の dtype と一致します。

コンストラクターとデストラクター

RandomGamma (const :: tensorflow::Scope & scope, :: tensorflow::Input shape, :: tensorflow::Input alpha)
RandomGamma (const :: tensorflow::Scope & scope, :: tensorflow::Input shape, :: tensorflow::Input alpha, const RandomGamma::Attrs & attrs)

パブリック属性

operation
output

公共機能

node () const
::tensorflow::Node *
operator::tensorflow::Input () const
operator::tensorflow::Output () const

パブリック静的関数

Seed (int64 x)
Seed2 (int64 x)

構造体

tensorflow:: ops:: RandomGamma:: Attrs

RandomGammaのオプションの属性セッター。

パブリック属性

手術

Operation operation

出力

::tensorflow::Output output

公共機能

ランダムガンマ

 RandomGamma(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input shape,
  ::tensorflow::Input alpha
)

ランダムガンマ

 RandomGamma(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input shape,
  ::tensorflow::Input alpha,
  const RandomGamma::Attrs & attrs
)

ノード

::tensorflow::Node * node() const 

演算子::tensorflow::入力

 operator::tensorflow::Input() const 

演算子::tensorflow::出力

 operator::tensorflow::Output() const 

パブリック静的関数

シード

Attrs Seed(
  int64 x
)

シード2

Attrs Seed2(
  int64 x
)