keras-embed-sim

Calculate similarity with embedding


Keywords
embedding, keras
License
MIT
Install
pip install keras-embed-sim==0.3.0

Documentation

Keras Embedding Similarity

Version License

[中文|English]

Compute the similarity between the outputs and the embeddings.

Install

pip install keras-embed-sim

Usage

from tensorflow 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])