Skip to content

Commit

Permalink
Fix tensorflow#333 correct typo in memory_store to_dataframe.
Browse files Browse the repository at this point in the history
  • Loading branch information
owenvallis committed May 31, 2023
1 parent 700f982 commit 343661f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow_similarity/stores/memory_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def to_data_frame(self, num_records: int = 0) -> PandasDataFrame:
data = {
"embeddings": self.embeddings[:num_records],
"data": self.data[:num_records],
"lables": self.labels[:num_records],
"labels": self.labels[:num_records],
}

# forcing type from Any to PandasFrame
Expand Down

0 comments on commit 343661f

Please sign in to comment.