pytorch
Here are 13,645 public repositories matching this topic...
-
Updated
Dec 23, 2020 - Jupyter Notebook
Add volume Bar
some recordings have low volume so the output can be sometimes really quiet. how about we add a volume bar so we can make the output louder/quieter?
-
Updated
Dec 26, 2020 - Jupyter Notebook
-
Updated
Dec 21, 2020 - Python
-
Updated
Dec 19, 2020 - Python
-
Updated
Nov 6, 2020 - Jupyter Notebook
We keep this issue open to collect feature requests from users and hear your voice. Our monthly release plan is also available here.
You can either:
- Suggest a new feature by leaving a comment.
- Vote for a feature request with
👍 or be against with👎 . (Remember that developers are busy and cannot respond to all feature requests, so vote for your most favorable one!) - Tell us that
-
Updated
Dec 26, 2020 - JavaScript
Change tensor.data to tensor.detach() due to
pytorch/pytorch#6990 (comment)
tensor.detach() is more robust than tensor.data.
-
Updated
Dec 7, 2020
This is both a bug report /feature request:
Any optimizer.step function might have a return value. However, NO return values are currently handled by the optimizer.LightningOptimizer class in the "step" function. Optimizers with return values in their step function therefore do not operate properly.
BugFix: Add return value to to the respective line, something like:
return_val=None
i
-
Updated
Nov 30, 2020 - Jupyter Notebook
-
Updated
Dec 24, 2020 - Python
-
Updated
Dec 23, 2020 - Python
-
Updated
Dec 26, 2020 - C++
-
Updated
Dec 25, 2020 - Python
-
Updated
Dec 26, 2020 - Python
-
Updated
Dec 25, 2020 - Python
Bug Report
These tests were run on s390x. s390x is big-endian architecture.
Failure log for helper_test.py
________________________________________________ TestHelperTensorFunctions.test_make_tensor ________________________________________________
self = <helper_test.TestHelperTensorFunctions testMethod=test_make_tensor>
def test_make_tensor(self): # type: () -> None
more details at: allenai/allennlp#2264 (comment)
What would you like to be added: As title
Why is this needed: All pruning schedule except AGPPruner only support level, L1, L2. While there are FPGM, APoZ, MeanActivation and Taylor, it would be much better if we can choose any pruner with any pruning schedule.
**Without this feature, how does current nni
-
Updated
Dec 22, 2020 - Jupyter Notebook
-
Updated
Dec 25, 2020 - Python
-
Updated
Oct 20, 2020 - Jupyter Notebook
-
Updated
Dec 4, 2020
cuda requirement
Is it possible to run this on a (recent) Mac, which does not support CUDA? I would have guessed setting --GPU 0 would not attempt to call CUDA, but it fails.
File "/Users/../Desktop/bopbtl/venv/lib/python3.7/site-packages/torch/cuda/__init__.py", line 61, in _check_driver
raise AssertionError("Torch not compiled with CUDA enabled")
AssertionError: Torch not compiled with CUDA enable
-
Updated
Oct 14, 2020 - 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."
Bart is a seq2seq model, but there might be applications where one would like to use only the pre-trained BartDecoder in an EncoderDecoder setting with a "long" encoder, such as
This is already p