Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Term Entry] PyTorch function: tensor_split() #5948

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
---
Title: 'tensor-split'
Description: 'Takes a input for a tensor and splits it into multiple tensors.'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Description: 'Takes a input for a tensor and splits it into multiple tensors.'
Description: 'Takes an input tensor and splits it into multiple sub-tensors.'

Made the sentence grammatically correct.

Subjects:
- 'Data Science'
Comment on lines +4 to +5
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Subjects:
- 'Data Science'
Subjects:
- 'AI'
- 'Data Science'
- 'Machine Learning'

Added some more subjects that are supported by tensor-split term in tensor-operations.

Tags:
- 'Data Structures'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- 'Data Structures'
- 'Data Structures'
- 'Deep Learning'
- 'PyTorch'
- 'Tensor'

Added some more tags for better understanding and relevance.

CatalogContent:
- 'intro-to-py-torch-and-neural-networks'
- 'paths/data-science'
---

In PyTorch, the **`.tensor_split()`** function splits a tensor into multiple sub-tensors. PyTorch will attempt to split the tensor evenly but when the tensor cannot be split evenly it will create as close to even sub-tensors as possible. The sub tensors can be also shaped with a dim (dimension) input.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
In PyTorch, the **`.tensor_split()`** function splits a tensor into multiple sub-tensors. PyTorch will attempt to split the tensor evenly but when the tensor cannot be split evenly it will create as close to even sub-tensors as possible. The sub tensors can be also shaped with a dim (dimension) input.
In PyTorch, the **`.tensor_split()`** function splits a tensor into multiple sub-tensors. If the tensor cannot be split evenly, PyTorch distributes the elements as evenly as possible. The shape of the sub-tensors can also be controlled using the `dim` (dimension) parameter.

Reframed the sentence for more consistency and grammatical correctness.


## Syntax

```pseudo
torch.tensor_split(input, indices_or_sections, dim=0)
```

- `input(Tensor)`: The tensor to be split.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change

Please remove this extra blank line over here.

- `indices_or_sections(int)`: How many sub tensors to split into
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- `indices_or_sections(int)`: How many sub tensors to split into
- `indices_or_sections(int)`: Number of sub-tensors to split the input tensor into, or the indices at which to split along the specified dimension.

This sentence seems grammatically incorrect or incomplete. So rephrase it for more clarity.


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change

Please remove this extra blank line over here.

- `dim(int, optional)`: Change the dimensions of the split tensors, Default=0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- `dim(int, optional)`: Change the dimensions of the split tensors, Default=0
- `dim(int, optional)`: The dimension along which to split the tensor. Default is `0`.


## Example

The following example demonstrates the usage of the `.tensor_split()` function:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The following example demonstrates the usage of the `.tensor_split()` function:
The following example demonstrates the use of the `.tensor_split()` function:


```py
import torch

x = torch.arange(10) #create a one dimensional tensor
torch.tensor_split(x, 2) #split the tensor into 2 parts
```
```shell
#the above code produces the tensor in 2 equal parts. 10 goes into 2 5 times so each subtensor has 5 elements
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
#the above code produces the tensor in 2 equal parts. 10 goes into 2 5 times so each subtensor has 5 elements
#the above code produces the tensor in 2 equal parts. 10 goes into 2 5 times so each subtensor has 5 elements

Instead of this comment: "#the above code produces the tensor in 2 equal parts. 10 goes into 2 5 times so each sub-tensor has 5 elements," you can use the following sentence before the shell block: "The following code splits the tensor into 2 equal sub-tensors. Since 10 can be evenly divided by 2, each sub-tensor will contain 5 elements:"

(tensor([0, 1, 2, 3, 4]), tensor([5, 6, 7, 8, 9]))
```

```py
import torch

x = torch.arange(13) #create a one dimensional tensor
torch.tensor_split(x, 6) #split the tensor into 6 parts
```
```shell
#the above code produces the tensor in 6 almost equal parts. 13 is not divisable by 6 so PyTorch does this as close to even as possible the first sub tensor having 3 elements and the rest only 2.
(tensor([0, 1, 2]), tensor([3, 4]), tensor([5, 6]), tensor([7, 8]), tensor([ 9, 10]), tensor([11, 12]))
```
Comment on lines +42 to +51
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
```py
import torch
x = torch.arange(13) #create a one dimensional tensor
torch.tensor_split(x, 6) #split the tensor into 6 parts
```
```shell
#the above code produces the tensor in 6 almost equal parts. 13 is not divisable by 6 so PyTorch does this as close to even as possible the first sub tensor having 3 elements and the rest only 2.
(tensor([0, 1, 2]), tensor([3, 4]), tensor([5, 6]), tensor([7, 8]), tensor([ 9, 10]), tensor([11, 12]))
```
```py
import torch
x = torch.arange(13) #create a one dimensional tensor
torch.tensor_split(x, 6) #split the tensor into 6 parts
#the above code produces the tensor in 6 almost equal parts. 13 is not divisable by 6 so PyTorch does this as close to even as possible the first sub tensor having 3 elements and the rest only 2.
(tensor([0, 1, 2]), tensor([3, 4]), tensor([5, 6]), tensor([7, 8]), tensor([ 9, 10]), tensor([11, 12]))
This section can be removed since an example has already been added earlier in this entry.

Loading