Layer normalization implemented in Keras
Project description
Keras Layer Normalization
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()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Close
Hashes for keras-layer-normalization-0.13.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 044382758bfefba1cce25f4b73f781c6e058203583a8e2e62bb116ae6649cd56 |
|
MD5 | c2f5d9244d57c83cf5506f4f5d0de402 |
|
BLAKE2b-256 | eaf3a92ce51219280eea003911722046db17eaebf5f26679a73887a5c357abe4 |