Skip to content

Commit 524614f

Browse files
Fix tqdm total size when preprocessing data
1 parent af3988f commit 524614f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data_processor/data_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def preprocess_split(dataset, split, args, parsed_programs, text_tokenize, progr
127127
raise NotImplementedError
128128

129129
START_PROCESS = False
130-
for i, example in tqdm(enumerate(data_split)):
130+
for i, example in enumerate(tqdm(data_split)):
131131
# if example.db_name != 'assets_maintenance':
132132
# continue
133133
# if 'Glenn' in example.text:

0 commit comments

Comments
 (0)