simple-faster-rcnn-pytorch icon indicating copy to clipboard operation
simple-faster-rcnn-pytorch copied to clipboard

In train.py line: 76

Open zhijiejia opened this issue 3 years ago • 0 comments
trafficstars

change

        for ii, (img, bbox_, label_, scale) in tqdm(enumerate(dataloader)):

to

        for ii, (img, bbox_, label_, scale) in enumerate(tqdm(dataloader)):

to present the progress bar

zhijiejia avatar Mar 23 '22 12:03 zhijiejia