Keras Layer Normalization Save Abandoned

Layer normalization implemented in Keras

Project README

Keras Layer Normalization

Version License

Implementation of the paper: Layer Normalization

Install

pip install keras-layer-normalization

Usage

from tensorflow 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()
Open Source Agenda is not affiliated with "Keras Layer Normalization" Project. README Source: CyberZHG/keras-layer-normalization
Stars
60
Open Issues
0
Last Commit
2 years ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating