Calculate similarity with embedding
Project description
Keras Embedding Similarity
Compute the similarity between the outputs and the embeddings.
Install
pip install keras-embed-sim
Usage
import keras
from keras_embed_sim import EmbeddingRet, EmbeddingSim
input_layer = keras.layers.Input(shape=(None,), name='Input')
embed, embed_weights = EmbeddingRet(
input_dim=20,
output_dim=100,
mask_zero=True,
)(input_layer)
output_layer = EmbeddingSim()([embed, embed_weights])
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
keras-embed-sim-0.9.0.tar.gz
(4.1 kB
view hashes)