All Projects → Mind-the-Pineapple → Autoregressive-models

Mind-the-Pineapple / Autoregressive-models

Licence: MIT license
Tensorflow 2.0 implementation of Deep Autoregressive Models

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Autoregressive-models

Awesome-Tensorflow2
基于Tensorflow2开发的优秀扩展包及项目
Stars: ✭ 45 (+150%)
Mutual labels:  tensorflow-models, tensorflow2
gans-2.0
Generative Adversarial Networks in TensorFlow 2.0
Stars: ✭ 76 (+322.22%)
Mutual labels:  tensorflow-models, tensorflow2
pcdarts-tf2
PC-DARTS (PC-DARTS: Partial Channel Connections for Memory-Efficient Differentiable Architecture Search, published in ICLR 2020) implemented in Tensorflow 2.0+. This is an unofficial implementation.
Stars: ✭ 25 (+38.89%)
Mutual labels:  tensorflow2
overlord
Official pytorch implementation of "Scaling-up Disentanglement for Image Translation", ICCV 2021.
Stars: ✭ 35 (+94.44%)
Mutual labels:  generative-models
BetaVQE.jl
Solving Quantum Statistical Mechanics with Variational Autoregressive Networks and Quantum Circuits
Stars: ✭ 27 (+50%)
Mutual labels:  autoregressive-neural-networks
datascienv
datascienv is package that helps you to setup your environment in single line of code with all dependency and it is also include pyforest that provide single line of import all required ml libraries
Stars: ✭ 53 (+194.44%)
Mutual labels:  tensorflow2
Tensorflow2-ObjectDetectionAPI-Colab-Hands-On
Tensorflow2 Object Detection APIのハンズオン用資料です(Hands-on documentation for the Tensorflow2 Object Detection API)
Stars: ✭ 33 (+83.33%)
Mutual labels:  tensorflow2
fewshot-font-generation
The unified repository for few-shot font generation methods. This repository includes FUNIT (ICCV'19), DM-Font (ECCV'20), LF-Font (AAAI'21) and MX-Font (ICCV'21).
Stars: ✭ 76 (+322.22%)
Mutual labels:  generative-models
icml17 knn
Deriving Neural Architectures from Sequence and Graph Kernels
Stars: ✭ 59 (+227.78%)
Mutual labels:  tensorflow-models
MAX-Text-Summarizer
Generate a summarized description of a body of text
Stars: ✭ 27 (+50%)
Mutual labels:  tensorflow-models
TF-Model-Deploy-Tutorial
A tutorial exploring multiple approaches to deploy a trained TensorFlow (or Keras) model or multiple models for prediction.
Stars: ✭ 51 (+183.33%)
Mutual labels:  tensorflow-models
lffont
Official PyTorch implementation of LF-Font (Few-shot Font Generation with Localized Style Representations and Factorization) AAAI 2021
Stars: ✭ 110 (+511.11%)
Mutual labels:  generative-models
mae-scalable-vision-learners
A TensorFlow 2.x implementation of Masked Autoencoders Are Scalable Vision Learners
Stars: ✭ 54 (+200%)
Mutual labels:  tensorflow2
Tensorflow-YOLACT
Implementation of the paper "YOLACT Real-time Instance Segmentation" in Tensorflow 2
Stars: ✭ 97 (+438.89%)
Mutual labels:  tensorflow2
nn-Meter
A DNN inference latency prediction toolkit for accurately modeling and predicting the latency on diverse edge devices.
Stars: ✭ 211 (+1072.22%)
Mutual labels:  tensorflow-models
spectral normalization-tf2
🌈 Spectral Normalization implemented as Tensorflow 2
Stars: ✭ 36 (+100%)
Mutual labels:  tensorflow2
simsg
Semantic Image Manipulation using Scene Graphs (CVPR 2020)
Stars: ✭ 49 (+172.22%)
Mutual labels:  generative-models
muzero
A clean implementation of MuZero and AlphaZero following the AlphaZero General framework. Train and Pit both algorithms against each other, and investigate reliability of learned MuZero MDP models.
Stars: ✭ 126 (+600%)
Mutual labels:  tensorflow2
transformer-tensorflow2.0
transformer in tensorflow 2.0
Stars: ✭ 53 (+194.44%)
Mutual labels:  tensorflow2
entity-network
Tensorflow implementation of "Tracking the World State with Recurrent Entity Networks" [https://arxiv.org/abs/1612.03969] by Henaff, Weston, Szlam, Bordes, and LeCun.
Stars: ✭ 58 (+222.22%)
Mutual labels:  tensorflow-models

Deep Autoregressive Models

MIT license

This repository is a supplement to our blog series Deep Autoregressive Models.

Setup

Clone the git repository :

git clone https://github.com/Mind-the-Pineapple/Autoregressive-models.git

Python 3 with TensorFlow 2.0+ are the primary requirements. Install virtualenv and create a new virtual environment:

sudo apt update
sudo apt install python3-dev python3-pip
sudo pip3 install -U virtualenv  # system-wide install
virtualenv --system-site-packages -p python3 ./venv

Then, install requirements

source ./venv/bin/activate
pip3 install --upgrade pip
pip3 install -r requirements.txt

1. Autoregressive Models — PixelCNN

Creating digits with deep generative models!



2. Modelling Coloured Images

Extending the model to the full colour spectrum




3. PixelCNN's Blind Spot and how to fix it

How to fix the Pixel CNN's blind spot

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].