All Projects → Hi-king → superresolution_gan

Hi-king / superresolution_gan

Licence: other
Chainer implementation of Photo-Realistic Single Image Super-Resolution Using a Generative Adversarial Network

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to superresolution gan

pyner
🌈 Implementation of Neural Network based Named Entity Recognizer (Lample+, 2016) using Chainer.
Stars: ✭ 45 (-10%)
Mutual labels:  chainer
BMI219-2017-ProteinFolding
UCSF BMI219 Deep Learning (2017), Coding example (Prediction of protein folding with RNN and CNN)
Stars: ✭ 14 (-72%)
Mutual labels:  chainer
TensorFlow-SR-DenseNet
Tensorflow with Image Super-Resolution Using Dense Skip Connections , color
Stars: ✭ 36 (-28%)
Mutual labels:  superresolution
3dgan-chainer
📦 A Chainer implementation of 3D Generative Adversarial Network.
Stars: ✭ 25 (-50%)
Mutual labels:  chainer
chainer2pytorch
Converts Chainer modules to PyTorch, parameters included.
Stars: ✭ 36 (-28%)
Mutual labels:  chainer
convolutional seq2seq
fairseq: Convolutional Sequence to Sequence Learning (Gehring et al. 2017) by Chainer
Stars: ✭ 63 (+26%)
Mutual labels:  chainer
Einops
Deep learning operations reinvented (for pytorch, tensorflow, jax and others)
Stars: ✭ 4,022 (+7944%)
Mutual labels:  chainer
chainer-graph-cnn
Chainer implementation of 'Convolutional Neural Networks on Graphs with Fast Localized Spectral Filtering' (https://arxiv.org/abs/1606.09375)
Stars: ✭ 67 (+34%)
Mutual labels:  chainer
chainer-pix2pix
Chainer implementation for Image-to-Image Translation Using Conditional Adversarial Networks
Stars: ✭ 40 (-20%)
Mutual labels:  chainer
chainer-param-monitor
Monitor parameter and gradient statistics during neural network training with Chainer
Stars: ✭ 13 (-74%)
Mutual labels:  chainer
ChainerPruner
ChainerPruner: Channel Pruning framework for Chainer
Stars: ✭ 21 (-58%)
Mutual labels:  chainer
pytorch-gans
PyTorch implementation of GANs (Generative Adversarial Networks). DCGAN, Pix2Pix, CycleGAN, SRGAN
Stars: ✭ 21 (-58%)
Mutual labels:  superresolution
chainer-fcis
[This project has moved to ChainerCV] Chainer Implementation of Fully Convolutional Instance-aware Semantic Segmentation
Stars: ✭ 45 (-10%)
Mutual labels:  chainer
chainer-grad-cam
Chainer implementation of Grad-CAM
Stars: ✭ 20 (-60%)
Mutual labels:  chainer
rocgan
Chainer implementation of the paper Robust Conditional Generative Adversarial Networks
Stars: ✭ 15 (-70%)
Mutual labels:  chainer
kawaii creator
Photo to illustration converter
Stars: ✭ 79 (+58%)
Mutual labels:  chainer
deep-learning-tutorial-with-chainer
Deep learning tutorial with Chainer
Stars: ✭ 25 (-50%)
Mutual labels:  chainer
SuperResolution-with-Perceptual-loss
In this project I have used an convolution neural network with perceptual loss to convert low res image into high res image.
Stars: ✭ 17 (-66%)
Mutual labels:  superresolution
chainer-sort
Simple, Online, Realtime Tracking of Multiple Objects (SORT) implementation for Chainer and ChainerCV.
Stars: ✭ 20 (-60%)
Mutual labels:  chainer
ICNR
Convolution NN resize initialization for subpixel convolutions
Stars: ✭ 31 (-38%)
Mutual labels:  superresolution

superresolution_gan

Chainer implementation of Photo-Realistic Single Image Super-Resolution Using a Generative Adversarial Network

Try

wget https://www.dropbox.com/s/l4s5a6v4licks62/generator_model_3008000.npz
python superresolution.py --modelpath generator_model_3008000.npz --imagepath input.png --outputpath sr.png

Training

python train.py \
  --gpu=2  \
  --use_discriminator \
  --pretrained_generator generator_model_3008000.npz \
  --dataset "/mnt/dataset/ilsvrc/ILSVRC2012_img_train/*.JPEG" \
  --batchsize=16 \
  --k_mse=0.0001 \
  --k_adversarial=0.00001 \
  --outdirname output/srgan
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].