Skip to content

Latest commit

 

History

History
28 lines (15 loc) · 880 Bytes

stores.md

File metadata and controls

28 lines (15 loc) · 880 Bytes

Module: TFSimilarity.stores

Key Values Stores store the data associated with the embeddings indexed by

the Indexer().

Each key of the store represent a record that contains information about a given embedding.

The main use-case for the store is to retrieve the records associated with the ids returned by a nearest neigboor search performed with the

Additionally one might want to inspect the content of the index which is why Store() class may implement an export to a Pandas Dataframe via the to_pandas() method.

Classes