This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Required downloads: | |
# NVIDIA-Linux-x86_64-367.27.run | |
# cuda_8.0.27_linux.run | |
# cudnn-8.0-linux-x64-v5.0-ga.tgz | |
sudo apt-get install build-essential | |
sudo apt-get install linux-image-extra-`uname -r` | |
sudo ./NVIDIA-Linux-x86_64-367.27.run | |
./cuda_8.0.27_linux.run --extract=`pwd`/extracts | |
sudo ./extracts/cuda-linux64-rel-8.0.27-20733550.run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from keras.layers import GRU, initializations, K | |
from collections import OrderedDict | |
class GRULN(GRU): | |
'''Gated Recurrent Unit with Layer Normalization | |
Current impelemtation only works with consume_less = 'gpu' which is already | |
set. | |
# Arguments |