टेंसरफ़्लो:: ऑप्स:: वॉल्यूमपैच निकालें

#include <array_ops.h>

input से patches निकालें और उन्हें "गहराई" आउटपुट आयाम में डालें।

सारांश

extract_image_patches का 3डी एक्सटेंशन।

तर्क:

  • स्कोप: एक स्कोप ऑब्जेक्ट
  • इनपुट: आकार के साथ 5-डी टेंसर [batch, in_planes, in_rows, in_cols, depth]
  • ksize: input के प्रत्येक आयाम के लिए स्लाइडिंग विंडो का आकार।
  • प्रगति: लंबाई का 1-डी 5. दो लगातार पैच के केंद्र input में कितनी दूर हैं। होना चाहिए: [1, stride_planes, stride_rows, stride_cols, 1]
  • पैडिंग: उपयोग करने के लिए पैडिंग एल्गोरिदम का प्रकार।

हम आकार-संबंधी विशेषताओं को इस प्रकार निर्दिष्ट करते हैं:

      ksizes = [1, ksize_planes, ksize_rows, ksize_cols, 1]
      strides = [1, stride_planes, strides_rows, strides_cols, 1]

रिटर्न:

  • Output : आकार के साथ 5-डी टेंसर [batch, out_planes, out_rows, out_cols, ksize_planes * ksize_rows * ksize_cols * depth] जिसमें आकार के आकार वाले पैच ksize_planes x ksize_rows x ksize_cols x depth "गहराई" आयाम में वेक्टर किया जाता है। ध्यान दें कि out_planes , out_rows और out_cols आउटपुट पैच के आयाम हैं।

निर्माता और विध्वंसक

ExtractVolumePatches (const :: tensorflow::Scope & scope, :: tensorflow::Input input, const gtl::ArraySlice< int > & ksizes, const gtl::ArraySlice< int > & strides, StringPiece padding)

सार्वजनिक गुण

operation
patches

सार्वजनिक समारोह

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

सार्वजनिक गुण

संचालन

Operation operation

पैच

::tensorflow::Output patches

सार्वजनिक समारोह

वॉल्यूमपैच निकालें

 ExtractVolumePatches(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input input,
  const gtl::ArraySlice< int > & ksizes,
  const gtl::ArraySlice< int > & strides,
  StringPiece padding
)

नोड

::tensorflow::Node * node() const 

ऑपरेटर::टेन्सरफ़्लो::इनपुट

 operator::tensorflow::Input() const 

ऑपरेटर::टेन्सरफ़्लो::आउटपुट

 operator::tensorflow::Output() const