tflite_support.task.text.TextEmbedder

Class that performs dense feature vector extraction on text.

number_of_output_layersGets the number of output layers of the model.
options

Methods

cosine_similarity

View source

Computes cosine similarity [1] between two feature vectors.

create_from_file

View source

Creates the TextEmbedder object from a TensorFlow Lite model.

Args
file_pathPath to the model.

Returns
TextEmbedder object that's created from the model file.

Raises
ValueErrorIf failed to create TextEmbedder object from the provided file such as invalid file.
RuntimeErrorIf other types of error occurred.

create_from_options

View source

Creates the TextEmbedder object from text embedder options.

Args
optionsOptions for the text embedder task.

Returns
TextEmbedder object that's created from options.

Raises
ValueErrorIf failed to create TextEmbedder object from TextEmbedderOptions such as missing the model.
RuntimeErrorIf other types of error occurred.

embed

View source

Performs actual feature vector extraction on the provided text.

Args
textthe input text, used to extract the feature vectors.

Returns
embedding result.

Raises
ValueErrorIf any of the input arguments is invalid.
RuntimeErrorIf failed to calculate the embedding vector.

get_embedding_dimension

View source

Gets the dimensionality of the embedding output.

Args
output_indexThe output index of output layer.

Returns
Dimensionality of the embedding output by the output_index'th output layer. Returns -1 if output_index is out of bounds.