Skip to content

Commit

Permalink
fix drop_and_merge_duplicates to drop_duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
kntkb committed Mar 12, 2024
1 parent 0963d0f commit fb97040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion espfit/tests/test_app_train_sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_load_dataset(tmpdir):

# Prepare input dataset ready for training
temporary_directory = tmpdir.mkdir('misc')
ds.drop_and_merge_duplicates(save_merged_dataset=True, dataset_name='misc', output_directory_path=str(temporary_directory))
ds.drop_duplicates(save_merged_dataset=True, dataset_name='misc', output_directory_path=str(temporary_directory))
ds.reshape_conformation_size(n_confs=50)
ds.compute_relative_energy()

Expand Down

0 comments on commit fb97040

Please sign in to comment.