Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/erogol/net2net

Net2Net implementation on PyTorch for any possible vision layers.
https://github.com/erogol/net2net

computer-vision deep-learning net2net pytorch

Last synced: 24 days ago
JSON representation

Net2Net implementation on PyTorch for any possible vision layers.

Awesome Lists containing this project

README

        

# Net2Net
Net2Net implementation on PyTorch for any possible vision layers (nn.Linear, nn.Conv2d, nn.Conv3D, even wider operator btw nn.ConvX to nn.Linear).
Checkout the [paper](https://arxiv.org/abs/1511.05641:) for more detail

## Observations:

- Using BatchNorm between layers, improves the competence of Net2Net. Otherwise, Net2Net approach is not able to get
comparable results to a network trained from scratch.

- Inducing noise to new units and connections prelude to better networks. The effect is more evident without BathNorm layer.

- Normalizing layer weights before any Net2Net operation increases the speed of learning and gives better convergence. Even so, it worths to investgate better normalization methods than L2 norm.