tensorflow:: אופס:: כָּרִית

#include <array_ops.h>

מרפד טנזור באפסים.

סיכום

פעולה זו מרפדת input באפסים בהתאם paddings שאתה מציין. paddings הוא טנזור שלם עם צורה [Dn, 2] , כאשר n הוא דרגת input . עבור כל ממד D של input , 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]]

טיעונים:

  • scope: אובייקט Scope

החזרות:

  • 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