pytorch
Here are 17,454 public repositories matching this topic...
-
Updated
Sep 1, 2021 - Python
-
Updated
Sep 2, 2021 - Jupyter Notebook
-
Updated
Jun 10, 2021 - Python
-
Updated
Sep 4, 2021 - Jupyter Notebook
Reproduction
- What command or script did you run?
I use ATSS to train on cityscapes dataset, and all the configurations are exactly the same as the official faster-rcnn. AP75 is always -1 at the time of evaluation. - Did you make any modifications on the code or config? Did you understand what you have modified?
- What dataset did you use?
cityscapes
Environment
sys.platform:
-
Updated
Sep 3, 2021 - JavaScript
-
Updated
Sep 2, 2021 - Python
-
Updated
Sep 5, 2021 - Python
Proposed refactoring or deprecation
Rename ProgressBar callback to TQDMProgressBar (https://github.com/tqdm/tqdm)
https://github.com/daniellepintz/pytorch-lightning/blob/a49690dfa3502508c8765e6bb46ded17e561af8e/pytorch_lightning/callbacks/progress/progress.py#L55-L55
Motivation
After we added the RichProgressBar in PyTorchLightning/pytorch-lightning#8929, i
-
Updated
Aug 23, 2021 - Jupyter Notebook
-
Updated
Sep 1, 2021 - Python
Change tensor.data
to tensor.detach()
due to
pytorch/pytorch#6990 (comment)
tensor.detach()
is more robust than tensor.data
.
-
Updated
Sep 4, 2021 - Python
-
Updated
Aug 30, 2021 - C
-
Updated
Aug 29, 2021 - Python
-
Updated
May 2, 2021
-
Updated
Aug 30, 2021 - Jupyter Notebook
-
Updated
Sep 4, 2021 - Python
-
Updated
Sep 4, 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
Sep 4, 2021 - Python
-
Updated
Aug 29, 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
Sep 4, 2021 - Python
-
Updated
Sep 4, 2021 - Python
-
Updated
Jul 25, 2021 - Jupyter Notebook
-
Updated
Mar 14, 2021 - Jupyter Notebook
-
Updated
Aug 3, 2021 - Python
-
Updated
Sep 4, 2021 - Python
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."
https://github.com/huggingface/transformers/blob/546dc24e0883e5e9f5eb06ec8060e3e6ccc5f6d7/src/transformers/models/gpt2/modeling_gpt2.py#L698
Assertions can't be relied upon for control flow because they can be disabled, as per the following: