-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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.' | ||||||||||||||||||||||||||||||||
Subjects: | ||||||||||||||||||||||||||||||||
- 'Data Science' | ||||||||||||||||||||||||||||||||
Comment on lines
+4
to
+5
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Added some more subjects that are supported by |
||||||||||||||||||||||||||||||||
Tags: | ||||||||||||||||||||||||||||||||
- 'Data Structures' | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
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. | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
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. | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This sentence seems grammatically incorrect or incomplete. So rephrase it for more clarity. |
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
## Example | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
The following example demonstrates the usage of the `.tensor_split()` function: | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
```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 | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
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
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
#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]))
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made the sentence grammatically correct.