-
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
Conversation
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.
Hey @mwmartella,
The entry is well-written! I’ve suggested a few changes—please make them as soon as possible. Also, please note that being on the main branch is discouraged. Please create a new separate branch for this entry. Thanks for contributing to the Codecademy docs! :) Feel free to reach out if you have any questions.
Thanks,
Savi
@@ -0,0 +1,51 @@ | |||
--- | |||
Title: 'tensor-split' | |||
Description: 'Takes a input for a tensor and splits it into multiple tensors.' |
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.
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' |
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.
Subjects: | |
- 'Data Science' | |
Subjects: | |
- 'AI' | |
- 'Data Science' | |
- 'Machine Learning' |
Added some more subjects that are supported by tensor-split
term in tensor-operations.
Subjects: | ||
- 'Data Science' | ||
Tags: | ||
- 'Data Structures' |
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.
- 'Data Structures' | |
- 'Data Structures' | |
- 'Deep Learning' | |
- 'PyTorch' | |
- 'Tensor' |
Added some more tags for better understanding and relevance.
- '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 comment
The reason will be displayed to describe this comment to others. Learn more.
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.
``` | ||
|
||
- `input(Tensor)`: The tensor to be split. | ||
|
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.
Please remove this extra blank line over here.
|
||
- `input(Tensor)`: The tensor to be split. | ||
|
||
- `indices_or_sections(int)`: How many sub tensors to split into |
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.
- `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.
|
||
- `indices_or_sections(int)`: How many sub tensors to split into | ||
|
||
- `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 comment
The reason will be displayed to describe this comment to others. Learn more.
- `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: |
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.
The following example demonstrates the usage of the `.tensor_split()` function: | |
The following example demonstrates the use of the `.tensor_split()` function: |
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 comment
The reason will be displayed to describe this comment to others. Learn more.
#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:"
```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])) | ||
``` |
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.
```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.
Description
Type of Change
Checklist
main
branch.Issues Solved
section.