Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxHalford committed Oct 21, 2023
1 parent 1b07a7c commit c735492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion river/anomaly/test_lof.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_batch_lof_scores():
under different batch sizes.
"""
cc_df = pd.DataFrame(datasets.CreditCard())
cc_df_np = [np.array(x.values()) for x in cc_df[0].to_dict().values()]
cc_df_np = [np.array(list(x.values())) for x in cc_df[0].to_dict().values()]

batch_sizes = [20, 50, 100]

Expand Down

0 comments on commit c735492

Please sign in to comment.