Closed drewnutt closed 1 month ago
hi @drewnutt , we can merge this when it passes the yapf linter. You can do this yourself or I can take care of it at a later time. Thanks for the contribution! Feel fee to tag me if you make the yapf change yourself
Problem: Pandas
append
has been deprecated since version 1.4 and has been removed since version 1.6.create_group_split
still usespandas.append
to split the train_val set into the train and val sets.Solution: Updates
create_group_split
to utilizepandas.concat
to create the train and val sets.