pytorch
Here are 19,160 public repositories matching this topic...
-
Updated
Dec 1, 2021 - Python
-
Updated
Dec 3, 2021 - Jupyter Notebook
-
Updated
Oct 16, 2021 - Python
-
Updated
Dec 7, 2021 - Jupyter Notebook
-
Updated
Dec 13, 2021 - Python
-
Updated
Dec 13, 2021 - JavaScript
Proposed refactor
Deprecate tpu_global_core_rank in favor of global_rank.
Pitch
It "looks" like tpu_global_core_rank in the TPUPlugin is just another name for what is known as the global rank. After #10896 we should investigate whether the two are equivalent and revert back to using the unified global_rank property exclusively.
-
Updated
Dec 7, 2021 - Python
-
Updated
Oct 25, 2021 - Jupyter Notebook
-
Updated
Dec 11, 2021 - Python
-
Updated
Dec 13, 2021 - Python
能出一个视频教程嘛
Change tensor.data to tensor.detach() due to
pytorch/pytorch#6990 (comment)
tensor.detach() is more robust than tensor.data.
-
Updated
Dec 13, 2021 - C++
-
Updated
Dec 13, 2021 - Python
-
Updated
Dec 13, 2021 - Python
-
Updated
Dec 13, 2021
-
Updated
Aug 30, 2021 - Jupyter Notebook
-
Updated
Dec 13, 2021 - Python
New Operator
Describe the operator
Why is this operator necessary? What does it accomplish?
This is a frequently used operator in tensorflow/keras
Can this operator be constructed using existing onnx operators?
If so, why not add it as a function?
I don't know.
Is this operator used by any model currently? Which one?
Are you willing to contribute it?
-
Updated
Dec 13, 2021 - Python
Motivated by huggingface/transformers#12789 in Transformers, one welcoming change would be replacing assertions with proper exceptions. The only type of assertions we should keep are those used as sanity checks.
Currently, there is a total of 87 files with the assert statements (located under datasets and src/datasets), so when working on this, to manage the PR s
-
Updated
Dec 13, 2021 - Python
-
Updated
Dec 3, 2021 - Python
Is your feature request related to a problem? Please describe.
I typically used compressed datasets (e.g. gzipped) to save disk space. This works fine with AllenNLP during training because I can write my dataset reader to load the compressed data. However, the predict command opens the file and reads lines for the Predictor. This fails when it tries to load data from my compressed files.
-
Updated
Dec 13, 2021 - Python
-
Updated
Jul 25, 2021 - Jupyter Notebook
-
Updated
Mar 14, 2021 - Jupyter Notebook
Improve this page
Add a description, image, and links to the pytorch topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the pytorch topic, visit your repo's landing page and select "manage topics."
Make
CLIPFeatureExtractor(or any FeatureExtractor in general) accept batch of images astorch.Tensor.Motivation
Currently batch of images as
torch.Tensorare not treated as a batch, it has to be aList[torch.Tensor]but it is not the case when using native Pytorch DataLoader. Can we update this line so that it accepts batches astorch.Tensor. Maybe we ca