テンソルフロー::作戦::ランダムシャッフルキュー

#include <data_flow_ops.h>

要素の順序をランダム化するキュー。

まとめ

引数:

  • スコープ:スコープオブジェクト
  • Component_types: 値内の各コンポーネントのタイプ。

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

  • 形状: 値の各コンポーネントの形状。この属性の長さは 0 であるか、component_types の長さと同じである必要があります。この属性の長さが 0 の場合、キュー要素の形状は制約されず、一度に 1 つの要素だけをデキューできます。
  • 容量: このキュー内の要素数の上限。負の数は制限がないことを意味します。
  • min_after_dequeue: デキュー後にこれほど多くの要素が存在するか、キューが閉じられない限り、デキューはブロックされます。これにより、要素の混合が最小限に抑えられます。
  • シード: シードまたはシード 2 のいずれかが 0 以外に設定されている場合、乱数ジェネレーターには指定されたシードがシードされます。それ以外の場合は、ランダム シードが使用されます。
  • シード2: シードの衝突を避けるための 2 番目のシード。
  • コンテナ: 空でない場合、このキューは指定されたコンテナに配置されます。それ以外の場合は、デフォルトのコンテナが使用されます。
  • shared_name: 空でない場合、このキューは指定された名前で複数のセッション間で共有されます。

戻り値:

  • Output : キューへのハンドル。

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

RandomShuffleQueue (const :: tensorflow::Scope & scope, const DataTypeSlice & component_types)
RandomShuffleQueue (const :: tensorflow::Scope & scope, const DataTypeSlice & component_types, const RandomShuffleQueue::Attrs & attrs)

パブリック属性

handle
operation

公共機能

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

パブリック静的関数

Capacity (int64 x)
Container (StringPiece x)
MinAfterDequeue (int64 x)
Seed (int64 x)
Seed2 (int64 x)
Shapes (const gtl::ArraySlice< PartialTensorShape > & x)
SharedName (StringPiece x)

構造体

tensorflow:: ops:: RandomShuffleQueue:: Attrs

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

パブリック属性

ハンドル

::tensorflow::Output handle

手術

Operation operation

公共機能

ランダムシャッフルキュー

 RandomShuffleQueue(
  const ::tensorflow::Scope & scope,
  const DataTypeSlice & component_types
)

ランダムシャッフルキュー

 RandomShuffleQueue(
  const ::tensorflow::Scope & scope,
  const DataTypeSlice & component_types,
  const RandomShuffleQueue::Attrs & attrs
)

ノード

::tensorflow::Node * node() const 

演算子::tensorflow::入力

 operator::tensorflow::Input() const 

演算子::tensorflow::出力

 operator::tensorflow::Output() const 

パブリック静的関数

容量

Attrs Capacity(
  int64 x
)

容器

Attrs Container(
  StringPiece x
)

MinAfterDequeue

Attrs MinAfterDequeue(
  int64 x
)

シード

Attrs Seed(
  int64 x
)

シード2

Attrs Seed2(
  int64 x
)

形状

Attrs Shapes(
  const gtl::ArraySlice< PartialTensorShape > & x
)

共有名

Attrs SharedName(
  StringPiece x
)