Skip to content

Commit d3839f3

Browse files
committed
Merge branch 'master' of github.com:mahnerak/R-NET-in-Keras
2 parents 17563dc + 0887b40 commit d3839f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

predict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
contexts = [sample['context'] for sample in samples]
6161

6262
answers = {}
63-
for sample, context, start, end in tqmd(zip(samples, contexts, *predictions)):
63+
for sample, context, start, end in tqdm(zip(samples, contexts, *predictions)):
6464
id = sample['id']
6565
context_tokens, _ = tokenize(context)
6666
answer = ' '.join(context_tokens[start : end+1])

0 commit comments

Comments
 (0)