Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Awesome Pytorch List | 14,103 | 3 months ago | 4 | |||||||
A comprehensive list of pytorch related content on github,such as different models,implementations,helper libraries,tutorials etc. | ||||||||||
Nlp Tutorial | 12,403 | 5 months ago | 34 | mit | Jupyter Notebook | |||||
Natural Language Processing Tutorial for Deep Learning Researchers | ||||||||||
External Attention Pytorch | 9,522 | 5 days ago | 2 | September 27, 2022 | 60 | mit | Python | |||
🍀 Pytorch implementation of various Attention Mechanisms, MLP, Re-parameter, Convolution, which is helpful to further understand papers.⭐⭐⭐ | ||||||||||
Jukebox | 6,597 | 6 months ago | 178 | other | Python | |||||
Code for the paper "Jukebox: A Generative Model for Music" | ||||||||||
Tts | 6,557 | 8 months ago | 7 | mpl-2.0 | Jupyter Notebook | |||||
:robot: :speech_balloon: Deep learning for Text to Speech (Discussion forum: https://discourse.mozilla.org/c/tts) | ||||||||||
Transformers Tutorials | 5,620 | 2 days ago | 209 | mit | Jupyter Notebook | |||||
This repository contains demos I made with the Transformers library by HuggingFace. | ||||||||||
Awesome Domain Adaptation | 4,554 | 14 days ago | 2 | mit | ||||||
A collection of AWESOME things about domian adaptation | ||||||||||
Informer2020 | 4,029 | a month ago | 88 | apache-2.0 | Python | |||||
The GitHub repository for the paper "Informer" accepted by AAAI 2021. | ||||||||||
Segloss | 2,870 | a year ago | 1 | apache-2.0 | Python | |||||
A collection of loss functions for medical image segmentation | ||||||||||
Alae | 2,850 | 3 years ago | 31 | Python | ||||||
[CVPR2020] Adversarial Latent Autoencoders |
This is a PyTorch implementation of the supervised learning experiments from the paper Model-Agnostic Meta-Learning (MAML): https://arxiv.org/abs/1703.03400
Important: You will need the latest version of PyTorch, v.0.2.0 to run this code (otherwise you will get errors about double backwards not being supported).
Currently, only the Omniglot experiments have been replicated here. The hyper-parameters are the same as those used in the original Tensorflow implementation, except that only 1 random seed is used here.
5-way 1-shot training, best performance 98.9%
20-way 1-shot training, best performance 92%
Note: the 20-way performance is slightly lower than that reported in the paper (they report 95.8%). If you can see why this might be, please let me know. Also in this experiment, we can see evidence of overfitting to the meta-training set.
The 5-way results are achieved by simply meta-testing the network trained on the 1-shot task on the 5-shot task (e.g. for the 5-way 5-shot result, test the 5-way 1-shot trained network with 5-shots). Again the 20-way result is lower here than reported in the paper.
This repo also contains code for running maml experiments on permuted MNIST (tasks are created by shuffling the labels). This is a nice sanity check task.
This software is distributed under the MIT license.