Implement Highway Networks based on Tensorflow 0.12.1
- Paper:
- Dataset:
- CNN: Basic Convolutional Neural Networks implementation
- Highway-FCN: Fully-connected Highway Networks implementation
- Highway-CNN: Convolutional Highway Networks implementation
- Install Python, TensorFlow and other dependencies:
# Ubuntu/Linux 64-bit
$ sudo apt-get install python-pip python-dev
# Mac OS X
$ sudo easy_install pip
$ sudo easy_install --upgrade six
# CPU only
$ pip install tensorflow
# GPU enabled
$ pip install tensorflow-gpu
You can also follow the official guide.
- Clone the repository:
$ git clone https://github.com/wujysh/highway-networks-tensorflow.git && cd highway-networks-tensorflow
- Run:
$ python {Version}.py
Replace {Version}
with cnn
, highway_fcn
or highway_cnn
.
- Paper: Recurrent Highway Networks
- Code: Github
- Experiment: (Perplexity - Epoch)