टेंसरफ़्लो:: ऑप्स:: इकट्ठा करना

#include <array_ops.h>

indices के अनुसार params से स्लाइस इकट्ठा करें

सारांश

indices किसी भी आयाम (आमतौर पर 0-डी या 1-डी) का पूर्णांक टेंसर होना चाहिए। आकृति indices.shape + params.shape[1:] के साथ एक आउटपुट टेंसर तैयार करता है जहां:

    # Scalar indices
    output[:, ..., :] = params[indices, :, ... :]

    # Vector indices
    output[i, :, ..., :] = params[indices[i], :, ... :]

    # Higher rank indices
    output[i, ..., j, :, ... :] = params[indices[i, ..., j], :, ..., :]

यदि indices एक क्रमपरिवर्तन है और len(indices) == params.shape[0] तो यह ऑपरेशन तदनुसार params क्रमपरिवर्तित करेगा।

validate_indices : अस्वीकृत। यदि यह ऑपरेशन सीपीयू को सौंपा गया है, तो indices में मान हमेशा सीमा के भीतर होने के लिए मान्य होते हैं। यदि जीपीयू को सौंपा गया है, तो आउट-ऑफ-बाउंड सूचकांकों के परिणामस्वरूप सुरक्षित लेकिन अनिर्दिष्ट व्यवहार होता है, जिसमें त्रुटि उत्पन्न करना शामिल हो सकता है।

तर्क:

रिटर्न:

  • Output : आउटपुट टेंसर.

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

Gather (const :: tensorflow::Scope & scope, :: tensorflow::Input params, :: tensorflow::Input indices)
Gather (const :: tensorflow::Scope & scope, :: tensorflow::Input params, :: tensorflow::Input indices, const Gather::Attrs & attrs)

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

operation
output

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

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

सार्वजनिक स्थैतिक कार्य

ValidateIndices (bool x)

संरचनाएँ

टेंसरफ्लो:: ऑप्स:: इकट्ठा करें:: एटर्स

इकट्ठा करने के लिए वैकल्पिक विशेषता सेटर।

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

संचालन

Operation operation

आउटपुट

::tensorflow::Output output

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

इकट्ठा करना

 Gather(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input params,
  ::tensorflow::Input indices
)

इकट्ठा करना

 Gather(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input params,
  ::tensorflow::Input indices,
  const Gather::Attrs & attrs
)

नोड

::tensorflow::Node * node() const 

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

 operator::tensorflow::Input() const 

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

 operator::tensorflow::Output() const 

सार्वजनिक स्थैतिक कार्य

मान्य सूचकांक

Attrs ValidateIndices(
  bool x
)