संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
टेंसरफ़्लो:: ऑप्स:: स्पार्सस्प्लिट
#include <sparse_ops.h>
एक SparseTensor
एक आयाम के साथ num_split
टेंसर में विभाजित करें।
सारांश
यदि shape[split_dim]
num_split
का पूर्णांक गुणज नहीं है। स्लाइस [0 : shape[split_dim] % num_split]
एक अतिरिक्त आयाम मिलता है। उदाहरण के लिए, यदि split_dim = 1
और num_split = 2
और इनपुट है
input_tensor = shape = [2, 7]
[ a d e ]
[b c ]
ग्राफ़िक रूप से आउटपुट टेंसर हैं:
output_tensor[0] = shape = [2, 4]
[ a ]
[b c ]
output_tensor[1] = shape = [2, 3]
[ d e ]
[ ]
तर्क:
- स्कोप: एक स्कोप ऑब्जेक्ट
- स्प्लिट_डिम: 0-डी। वह आयाम जिसके साथ विभाजित होना है.
[0, rank(shape))
की सीमा में होना चाहिए। - सूचकांक: 2-डी टेंसर विरल टेंसर के सूचकांकों का प्रतिनिधित्व करता है।
- मान: 1-डी टेंसर विरल टेंसर के मानों का प्रतिनिधित्व करता है।
- आकार: 1-डी. टेंसर विरल टेंसर के आकार का प्रतिनिधित्व करता है। आउटपुट सूचकांक: 1-डी टेंसरों की एक सूची आउटपुट विरल टेंसरों के सूचकांकों का प्रतिनिधित्व करती है।
- num_split: विभाजित करने के तरीकों की संख्या।
रिटर्न:
-
OutputList
आउटपुट_इंडिसेस -
OutputList
आउटपुट_वैल्यू: 1-डी टेंसर की एक सूची आउटपुट स्पार्स टेंसर के मूल्यों का प्रतिनिधित्व करती है। -
OutputList
आउटपुट_शेप: 1-डी टेंसर की एक सूची आउटपुट स्पार्स टेंसर के आकार का प्रतिनिधित्व करती है।
सार्वजनिक गुण
सार्वजनिक समारोह
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया."],[],[],null,["# tensorflow::ops::SparseSplit Class Reference\n\ntensorflow::ops::SparseSplit\n============================\n\n`#include \u003csparse_ops.h\u003e`\n\nSplit a `SparseTensor` into `num_split` tensors along one dimension.\n\nSummary\n-------\n\nIf the `shape[split_dim]` is not an integer multiple of `num_split`. Slices `[0 : shape[split_dim] % num_split]` gets one extra dimension. For example, if `split_dim = 1` and `num_split = 2` and the input is \n\n```objective-c\ninput_tensor = shape = [2, 7]\n[ a d e ]\n[b c ]\n```\n\n\u003cbr /\u003e\n\nGraphically the output tensors are: \n\n```objective-c\noutput_tensor[0] = shape = [2, 4]\n[ a ]\n[b c ]\n\noutput_tensor[1] = shape = [2, 3]\n[ d e ]\n[ ]\n```\n\n\u003cbr /\u003e\n\nArguments:\n\n- scope: A [Scope](/versions/r1.15/api_docs/cc/class/tensorflow/scope#classtensorflow_1_1_scope) object\n- split_dim: 0-D. The dimension along which to split. Must be in the range `[0, rank(shape))`.\n- indices: 2-D tensor represents the indices of the sparse tensor.\n- values: 1-D tensor represents the values of the sparse tensor.\n- shape: 1-D. tensor represents the shape of the sparse tensor. output indices: A list of 1-D tensors represents the indices of the output sparse tensors.\n- num_split: The number of ways to split.\n\n\u003cbr /\u003e\n\nReturns:\n\n- `OutputList` output_indices\n- `OutputList` output_values: A list of 1-D tensors represents the values of the output sparse tensors.\n- `OutputList` output_shape: A list of 1-D tensors represents the shape of the output sparse tensors.\n\n\u003cbr /\u003e\n\n| ### Constructors and Destructors ||\n|---|---|\n| [SparseSplit](#classtensorflow_1_1ops_1_1_sparse_split_1a321e452a28531c13e1804a67073d0d86)`(const ::`[tensorflow::Scope](/versions/r1.15/api_docs/cc/class/tensorflow/scope#classtensorflow_1_1_scope)` & scope, ::`[tensorflow::Input](/versions/r1.15/api_docs/cc/class/tensorflow/input#classtensorflow_1_1_input)` split_dim, ::`[tensorflow::Input](/versions/r1.15/api_docs/cc/class/tensorflow/input#classtensorflow_1_1_input)` indices, ::`[tensorflow::Input](/versions/r1.15/api_docs/cc/class/tensorflow/input#classtensorflow_1_1_input)` values, ::`[tensorflow::Input](/versions/r1.15/api_docs/cc/class/tensorflow/input#classtensorflow_1_1_input)` shape, int64 num_split)` ||\n\n| ### Public attributes ||\n|-----------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|\n| [operation](#classtensorflow_1_1ops_1_1_sparse_split_1a2974c5fbf83913d7d9f9efaad3748136) | [Operation](/versions/r1.15/api_docs/cc/class/tensorflow/operation#classtensorflow_1_1_operation) |\n| [output_indices](#classtensorflow_1_1ops_1_1_sparse_split_1aa34695e1d3350589e31496300ce37439) | `::`[tensorflow::OutputList](/versions/r1.15/api_docs/cc/group/core#group__core_1gab449e6a3abd500c2f4ea93f9e89ba96c) |\n| [output_shape](#classtensorflow_1_1ops_1_1_sparse_split_1aaadf678ffb2ceae9b4a3a71e743c04e4) | `::`[tensorflow::OutputList](/versions/r1.15/api_docs/cc/group/core#group__core_1gab449e6a3abd500c2f4ea93f9e89ba96c) |\n| [output_values](#classtensorflow_1_1ops_1_1_sparse_split_1a16af03b2decbe6d8c2b506f3e48dca4a) | `::`[tensorflow::OutputList](/versions/r1.15/api_docs/cc/group/core#group__core_1gab449e6a3abd500c2f4ea93f9e89ba96c) |\n\nPublic attributes\n-----------------\n\n### operation\n\n```text\nOperation operation\n``` \n\n### output_indices\n\n```scdoc\n::tensorflow::OutputList output_indices\n``` \n\n### output_shape\n\n```scdoc\n::tensorflow::OutputList output_shape\n``` \n\n### output_values\n\n```scdoc\n::tensorflow::OutputList output_values\n``` \n\nPublic functions\n----------------\n\n### SparseSplit\n\n```gdscript\n SparseSplit(\n const ::tensorflow::Scope & scope,\n ::tensorflow::Input split_dim,\n ::tensorflow::Input indices,\n ::tensorflow::Input values,\n ::tensorflow::Input shape,\n int64 num_split\n)\n```"]]