テンソルフロー::作戦::パッド

#include <array_ops.h>

テンソルをゼロで埋めます。

まとめ

この操作では、指定したpaddingsに従ってinputにゼロを埋め込みます。 paddings 、形状[Dn, 2]の整数テンソルです。ここで、 n はinputのランクです。 inputの各次元 D について、 paddings[D, 0]その次元のinputの内容の前に追加するゼロの数を示し、 paddings[D, 1]その次元のinputの内容の後に追加するゼロの数を示します。

出力の各次元 D のパディングされたサイズは次のとおりです。

paddings(D, 0) + input.dim_size(D) + paddings(D, 1)

例えば:

# 't' is [[1, 1], [2, 2]]
# 'paddings' is [[1, 1], [2, 2]]
# rank of 't' is 2
pad(t, paddings) ==> [[0, 0, 0, 0, 0, 0]
                      [0, 0, 1, 1, 0, 0]
                      [0, 0, 2, 2, 0, 0]
                      [0, 0, 0, 0, 0, 0]]

引数:

戻り値:

  • Output : 出力テンソル。

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

Pad (const :: tensorflow::Scope & scope, :: tensorflow::Input input, :: tensorflow::Input paddings)

パブリック属性

operation
output

公共機能

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

パブリック属性

手術

Operation operation

出力

::tensorflow::Output output

公共機能

パッド

 Pad(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input input,
  ::tensorflow::Input paddings
)

ノード

::tensorflow::Node * node() const 

演算子::tensorflow::入力

 operator::tensorflow::Input() const 

演算子::tensorflow::出力

 operator::tensorflow::Output() const