PyTorch
PyTorch is an open source machine learning library based on the Torch library, used for applications such as computer vision and natural language processing, primarily developed by Facebook's AI Research lab.
Here are 19,864 public repositories matching this topic...
-
Updated
Jan 19, 2022 - Python
-
Updated
Jan 26, 2022 - Jupyter Notebook
-
Updated
Oct 16, 2021 - Python
-
Updated
Jan 26, 2022 - Jupyter Notebook
-
Updated
Jan 26, 2022 - Python
-
Updated
Jan 15, 2022 - JavaScript
I want to train a detector based on object365 dataset, but object365 is pretty large, and caused out of memory error in my computer.
I want to split the annotation file to 10, such as ann1,ann2,...ann10, then build 10 datasets and concatenate them, but I'm not sure whether it's
gonna work or not.
Any better suggestion?
-
Updated
Jan 27, 2022 - JavaScript
This is a minor nit, but right now PyTorch Lightning seems to pin a very specific version of pyDeprecate==0.3.1. This is causing some dependency mismatches on our-end, since we have a separate dependency in our environment that relies on pyDeprecate==0.3.2.
Would there
-
Updated
Jan 19, 2022 - Python
-
Updated
Jan 14, 2022 - Python
-
Updated
Jan 27, 2022 - Python
-
Updated
Oct 25, 2021 - Jupyter Notebook
-
Updated
Jan 26, 2022 - Python
Change tensor.data to tensor.detach() due to
pytorch/pytorch#6990 (comment)
tensor.detach() is more robust than tensor.data.
🚀 The feature, motivation and pitch
I came across different homophily measures including the ones available in https://pytorch-geometric.readthedocs.io/en/latest/modules/utils.html#torch_geometric.utils.homophily. I found the one proposed by the LINKX paper will be a good addition to the utility func
-
Updated
Jan 26, 2022 - C++
-
Updated
Jan 20, 2022 - Python
-
Updated
Dec 30, 2021
Although the results look nice and ideal in all TensorFlow plots and are consistent across all frameworks, there is a small difference (more of a consistency issue). The result training loss/accuracy plots look like they are sampling on a lesser number of points. It looks more straight and smooth and less wiggly as compared to PyTorch or MXNet.
It can be clearly seen in chapter 6([CNN Lenet](ht
-
Updated
Aug 30, 2021 - Jupyter Notebook
-
Updated
Jan 25, 2022 - 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?
Is your feature request related to a problem? Please describe.
I am uploading our dataset and models for the "Constructing interval measures" method we've developed, which uses item response theory to convert multiple discrete labels into a continuous spectrum for hate speech. Once we have this outcome our NLP models conduct regression rather than classification, so binary metrics are not r
-
Updated
Jan 27, 2022 - Python
-
Updated
Jan 21, 2022 - Python
-
Updated
Jan 27, 2022 - 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
Jul 25, 2021 - Jupyter Notebook
Created by Facebook's AI Research lab (FAIR)
Released September 2016
Latest release about 2 months ago
- Repository
- pytorch/pytorch
- Website
- pytorch.org
- Wikipedia
- Wikipedia
As reported by some people (see NielsRogge/Transformers-Tutorials#53 and on the forum), the
generate()method currently does not take into accountconfig.decoder.eos_token_id, onlyconfig.eos_token_idto properly stop generation.Hence, models that are made using
EncoderDecoderModel/`VisionEnco