The Wayback Machine - https://web.archive.org/web/20200929073213/https://github.com/CyberZHG/keras-layer-normalization
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Keras Layer Normalization

Travis Coverage Version Downloads License

Implementation of the paper: Layer Normalization

Install

pip install keras-layer-normalization

Usage

import keras
from keras_layer_normalization import LayerNormalization


input_layer = keras.layers.Input(shape=(2, 3))
norm_layer = LayerNormalization()(input_layer)
model = keras.models.Model(inputs=input_layer, outputs=norm_layer)
model.compile(optimizer='adam', loss='mse', metrics={},)
model.summary()

About

Layer normalization implemented in Keras

Topics

Resources

License

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.