Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/xternalz/WideResNet-pytorch

Wide Residual Networks (WideResNets) in PyTorch
https://github.com/xternalz/WideResNet-pytorch

deep-learning residual-networks resnet wide-resnet wideresnet

Last synced: 4 days ago
JSON representation

Wide Residual Networks (WideResNets) in PyTorch

Awesome Lists containing this project

README

        

# Wide Residual Networks (WideResNets) in PyTorch
WideResNets for CIFAR10/100 implemented in PyTorch. This implementation requires less GPU memory than what is required by the official Torch implementation: https://github.com/szagoruyko/wide-residual-networks.

Example:
```
python train.py --dataset cifar100 --layers 40 --widen-factor 4
```

# Acknowledgement
- [densenet-pytorch](https://github.com/andreasveit/densenet-pytorch)
- Wide Residual Networks (BMVC 2016) http://arxiv.org/abs/1605.07146 by Sergey Zagoruyko and Nikos Komodakis.