in tensorflow_similarity/stores/memory_store.py there is a typo in the line 204
'''
data = {
"embeddings": self.embeddings[:num_records],
"data": self.data[:num_records],
"lables": self.labels[:num_records],
}
'''
the string says lables instead of labels.
I decided to just report it instead of modifying the file because it might break functionality of a saved index.
in tensorflow_similarity/stores/memory_store.py there is a typo in the line 204 ''' data = { "embeddings": self.embeddings[:num_records], "data": self.data[:num_records], "lables": self.labels[:num_records], } '''
the string says lables instead of labels.
I decided to just report it instead of modifying the file because it might break functionality of a saved index.