pytorch
Here are 18,735 public repositories matching this topic...
Clone a voice in 5 seconds to generate arbitrary speech in real-time
-
Updated
Nov 19, 2021 - Python
Learn how to responsibly deliver value with ML.
-
Updated
Oct 23, 2021 - Jupyter Notebook
PyTorch Tutorial for Deep Learning Researchers
-
Updated
Oct 16, 2021 - Python
The fastai deep learning library
-
Updated
Nov 7, 2021 - Jupyter Notebook
YOLOv5
-
Updated
Nov 19, 2021 - Python
Visualizer for neural network, deep learning, and machine learning models
-
Updated
Nov 19, 2021 - JavaScript
Proposed refactoring or deprecation
Motivation
Lightning has a utility defined for all gather with gradients here: https://github.com/PyTorchLightning/pytorch-lightning/blob/d515bcac969c2a485ada673e302bfac51f142331/pytorch_lightning/utilities/distributed.py#L200-L222
However, this is already available in torch dist
Image-to-Image Translation in PyTorch
-
Updated
Nov 17, 2021 - Python
pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行
-
Updated
Oct 25, 2021 - Jupyter Notebook
PyTorch image models, scripts, pretrained weights -- ResNet, ResNeXT, EfficientNet, EfficientNetV2, NFNet, Vision Transformer, MixNet, MobileNet-V3/V2, RegNet, DPN, CSPNet, and more
-
Updated
Nov 19, 2021 - Python
Facebook AI Research Sequence-to-Sequence Toolkit written in Python.
-
Updated
Nov 19, 2021 - Python
Change tensor.data to tensor.detach() due to
pytorch/pytorch#6990 (comment)
tensor.detach() is more robust than tensor.data.
ncnn is a high-performance neural network inference framework optimized for the mobile platform
-
Updated
Nov 19, 2021 - C
Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.
-
Updated
Oct 26, 2021 - Python
能出一个视频教程嘛
A comprehensive list of pytorch related content on github,such as different models,implementations,helper libraries,tutorials etc.
-
Updated
May 2, 2021
深度学习入门开源书,基于TensorFlow 2.0案例实战。Open source Deep Learning book, based on TensorFlow 2.0 framework.
-
Updated
Aug 30, 2021 - Jupyter Notebook
Distributed training framework for TensorFlow, Keras, PyTorch, and Apache MXNet.
-
Updated
Nov 19, 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?
Interactive deep learning book with multi-framework code, math, and discussions. Adopted at 300 universities from 55 countries including Stanford, MIT, Harvard, and Cambridge.
-
Updated
Nov 19, 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
A very simple framework for state-of-the-art Natural Language Processing (NLP)
-
Updated
Nov 19, 2021 - Python
State-of-the-art 2D and 3D Face Analysis Project
-
Updated
Nov 17, 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.
An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.
-
Updated
Nov 19, 2021 - Python
Natural Language Processing Tutorial for Deep Learning Researchers
-
Updated
Jul 25, 2021 - Jupyter Notebook
PyTorch tutorials and fun projects including neural talk, neural style, poem writing, anime generation (《深度学习框架PyTorch:入门与实战》)
-
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."


Currently, the
EncoderDecoderModelclass in PyTorch automatically creates thedecoder_input_idsbased on thelabelsprovided by the user (similar to how this is done for T5/BART). This should also be implemented forTFEncoderDecoderModel, because currently users should manually providedecoder_input_idsto the model.One can take a look at the TF implementation