pytorch/examples

imagenet benchmark measure elapsed time function issue

Open

#741 ouverte le 23 mars 2020

Voir sur GitHub
 (0 commentaires) (0 réactions) (0 assignés)Python (9 429 forks)batch import
good first issue

Métriques du dépôt

Stars
 (21 634 stars)
Métriques de merge PR
 (Aucune PR mergée en 30 j)

Description

Hi Pytorch team, I think the measure elaspsed time function is not right. Both trainning and validate function show the progress if i %args.print_freq == 0 in magenet/main.py . currently, the batch_time only measure one loop. I think the batch_time should measure args.print_freq loop elaspsed time.


     # measure elapsed time
     batch_time.update(time.time() - end)
     end = time.time()

     if i % args.print_freq == 0:
         progress.display(i)

Guide contributeur