tf.raw_ops.Split  |  TensorFlow v2.16.1 (original) (raw)

tf.raw_ops.Split

Stay organized with collections Save and categorize content based on your preferences.

Splits a tensor into num_split tensors along one dimension.

View aliases

Compat aliases for migration

SeeMigration guide for more details.

tf.compat.v1.raw_ops.Split

tf.raw_ops.Split(
    axis, value, num_split, name=None
)
Args
axis A Tensor of type int32. 0-D. The dimension along which to split. Must be in the range[-rank(value), rank(value)).
value A Tensor. The tensor to split.
num_split An int that is >= 1. The number of ways to split. Must evenly dividevalue.shape[split_dim].
name A name for the operation (optional).
Returns
A list of num_split Tensor objects with the same type as value.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.

Last updated 2024-04-26 UTC.