keras-position-wise-feed-forward

Feed forward layer implemented in Keras


Keywords
attention, keras, layer
License
MIT
Install
pip install keras-position-wise-feed-forward==0.6.0

Documentation

Keras Position-Wise Feed Forward

Version License

Implementation of position-wise feed forward layer in the paper: Attention is All You Need

Install

pip install keras-position-wise-feed-forward

Usage

from tensorflow import keras
from keras_position_wise_feed_forward import FeedForward

input_layer = keras.layers.Input(shape=(None, 32))
feed_forward_layer = FeedForward(units=128)(input_layer)
model = keras.models.Model(inputs=input_layer, outputs=feed_forward_layer)
model.compile(optimizer='adam', loss='mse')
model.summary()