Skip to content

Commit 0b094d3

Browse files
authored
Merge pull request #13 from CrafterKolyan/patch-1
Fix tqdm total size when preprocessing data
2 parents af3988f + 524614f commit 0b094d3

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)