AnnaTest

Results 3 comments of AnnaTest

``` t0 = time.time() for i, batch in enumerate(train_dataloader): print(i, time.time() - t0, "seconds") t0 = time.time() ``` from this, it‘s clearly that the dataloader cost too much time, and...