テンソルフロー::作戦::ランダムユニフォーム

#include <random_ops.h>

一様分布からランダムな値を出力します。

まとめ

生成された値は、範囲[0, 1)の一様分布に従います。下限 0 は範囲に含まれますが、上限 1 は除外されます。

引数:

  • スコープ:スコープオブジェクト
  • 形状: 出力テンソルの形状。
  • dtype: 出力のタイプ。

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

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

戻り値:

  • Output : 一様なランダム値で満たされた、指定された形状のテンソル。

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

RandomUniform (const :: tensorflow::Scope & scope, :: tensorflow::Input shape, DataType dtype)
RandomUniform (const :: tensorflow::Scope & scope, :: tensorflow::Input shape, DataType dtype, const RandomUniform::Attrs & attrs)

パブリック属性

operation
output

公共機能

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

パブリック静的関数

Seed (int64 x)
Seed2 (int64 x)

構造体

tensorflow:: ops:: RandomUniform:: Attrs

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

パブリック属性

手術

Operation operation

出力

::tensorflow::Output output

公共機能

ランダムユニフォーム

 RandomUniform(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input shape,
  DataType dtype
)

ランダムユニフォーム

 RandomUniform(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input shape,
  DataType dtype,
  const RandomUniform::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
)