An open API service indexing awesome lists of open source software.

https://github.com/t-hanya/chainer-DenseNet

Densely Connected Convolutional Networks by Chainer
https://github.com/t-hanya/chainer-DenseNet

Last synced: about 2 months ago
JSON representation

Densely Connected Convolutional Networks by Chainer

Awesome Lists containing this project

README

        

===================================================
Densely Connected Convolutional Networks by Chainer
===================================================

This is an experimental implementation of `Densely Connected Convolutional Networks `_ using Chainer framework.

- Original paper: https://arxiv.org/abs/1608.06993
- Official implementation: https://github.com/liuzhuang13/DenseNet

Requirements
============

- `Chainer `_ 2.0+
- `CuPy `_ 1.0+

Usage
=====

Train a DenseNet on CIFAR-10 dataset using::

python code/train.py --gpu 0 -o result

Visualize training result using::

python code/visualize.py result/log -o result

Sample Result
=============

.. image:: img/training_loss.png
:width: 400

.. image:: img/test_error.png
:width: 400

- Model parameters: L = 40, k = 12
- Batch size: 64
- Dataset: C10 (CIFAR-10 dataset without data augmentation)