You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the code we print the time in save_a_report and save_a_snapshot functions. I find out the time increases while training (starts small and keep increasing with more iterations). and sometimes it increases dramatically. Example in save_a_snapshot:
from [iteration 6000]
i_epoch: 2 i_iter: 6000 val_loss:2.4745 val_acc:0.3974 runtime: 33.43 min
to [iteration 7000]
i_epoch: 3 i_iter: 7000 val_loss:2.4929 val_acc:0.3963 runtime: 260.19 min
So it increases continuously in general(by small steps) while training and sometimes it increases dramatically(by big steps)
Another example:
from [the first thousand iterations]
I tried pytorch 4.0 and pytorch 1.0.
PS: I am training with datasets [imdb_train2014.npy, imdb_val2train2014.npy, imdb_genome.npy, imdb_vdtrain.npy] but I don't think that this will make any difference.
The text was updated successfully, but these errors were encountered:
In the code we print the time in
save_a_report
andsave_a_snapshot
functions. I find out the time increases while training (starts small and keep increasing with more iterations). and sometimes it increases dramatically.Example in
save_a_snapshot
:from [iteration 6000]
to [iteration 7000]
Example in
save_a_report
:from [iteration 9200]
to [iterations 9300, 9400]
So it increases continuously in general(by small steps) while training and sometimes it increases dramatically(by big steps)
Another example:
from [the first thousand iterations]
to [the thirteenth thousand iterations]
I tried pytorch 4.0 and pytorch 1.0.
PS: I am training with datasets
[imdb_train2014.npy, imdb_val2train2014.npy, imdb_genome.npy, imdb_vdtrain.npy]
but I don't think that this will make any difference.The text was updated successfully, but these errors were encountered: