Merge pull request #396 from IndexFziQ/IndexFziQ

add tqdm to the process of eval in examples/run_swag.py
This commit is contained in:
Thomas Wolf 2019-03-27 12:03:26 +01:00 committed by GitHub
commit cc8c2d2332
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -509,7 +509,7 @@ def main():
model.eval()
eval_loss, eval_accuracy = 0, 0
nb_eval_steps, nb_eval_examples = 0, 0
for input_ids, input_mask, segment_ids, label_ids in eval_dataloader:
for input_ids, input_mask, segment_ids, label_ids in tqdm(eval_dataloader, desc="Evaluating"):
input_ids = input_ids.to(device)
input_mask = input_mask.to(device)
segment_ids = segment_ids.to(device)