Skip to content

Commit 907ae08

Browse files
authored
small add_id backend fix (#525)
Signed-off-by: Vibhu Jawa <[email protected]>
1 parent 34a1cc6 commit 907ae08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nemo_curator/modules/add_id.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class AddId(BaseModule):
2727
def __init__(
2828
self, id_field, id_prefix: str = "doc_id", start_index: Optional[int] = None
2929
) -> None:
30-
super().__init__(input_backend="pandas")
30+
super().__init__(input_backend="any")
3131
self.id_field = id_field
3232
self.id_prefix = id_prefix
3333
self.start_index = start_index

0 commit comments

Comments
 (0)