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
That's because, when fade in, the from_it = (train_kimg)//batch_size, total_it = (train_kimg+total_kimg)//batch_size so the according to your code, cur_level will always be R+1.99. But it should be something progressively increasing from [R, R+1].
This line
is problematic.
That's because, when fade in, the
from_it = (train_kimg)//batch_size, total_it = (train_kimg+total_kimg)//batch_size
so the according to your code,cur_level
will always be R+1.99. But it should be something progressively increasing from [R, R+1].It should be
Please correct me if my understanding is wrong.
The text was updated successfully, but these errors were encountered: