Skip to content

Commit

Permalink
naive reverse grouper
Browse files Browse the repository at this point in the history
  • Loading branch information
BeachWang committed Dec 19, 2024
1 parent 203bc64 commit cf01e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data_juicer/ops/grouper/naive_reverse_grouper.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ def process(self, dataset):

samples = []
for sample in dataset:
samples.append(convert_dict_list_to_list_dict(sample))
samples.extend(convert_dict_list_to_list_dict(sample))

return samples

0 comments on commit cf01e7e

Please sign in to comment.