Skip to content

Commit

Permalink
pickle -> parquet
Browse files Browse the repository at this point in the history
  • Loading branch information
TerkaSlan committed Jan 31, 2025
1 parent e289c69 commit adde797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion training/tests/test_create_embedding.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def test_create_embedding():
assert os.path.exists(output_path)
assert os.path.getsize(output_path) > 0
# load embedding.pkl and check if it has the correct shape
df = pd.read_pickle(output_path)
df = pd.read_parquet(output_path)
assert df.shape[0] == len(os.listdir(cif_path))
assert df.shape[1] == expected_dimensionality

Expand Down

0 comments on commit adde797

Please sign in to comment.