Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tmulc18/highwaynetworks

TensorFlow implementation of Highway Networks
https://github.com/tmulc18/highwaynetworks

Last synced: about 2 months ago
JSON representation

TensorFlow implementation of Highway Networks

Awesome Lists containing this project

README

        

# Highway Networks

TensorFlow implementation of [Highway Networks](https://arxiv.org/abs/1505.00387). These networks shown to allow training with deeper architectures than traditional networks.

## Data
All evaluations were done using MNIST which can be downloaded from [here](https://pjreddie.com/projects/mnist-in-csv/)

The data should be structured like

```
--HighwayNetworks
--Data
--MNIST
--mnist_train.csv
--mnist_test.csv
```

## Repository Information
* `Highway Networks Demo.ipynb` notebook that shows how the networks is constructed.
* `Plain vs Highway.ipynb` flexible notebook that compares plain networks with highway networks
* `utils.py` data processing functions
* `modules.py` helper functions for building networks
* `models.py` builds networks