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
tldr: learn.summary() crashes out with the following summary when doing a 2nd cycle of transfer learning
57 elif val <= self.first_its or val >= self.last_v + self.wait_for or val >= self.total:
58 cur_t = time.time()
59 avg_t = (cur_t - self.start_t) / val
60 self.wait_for = max(int(self.update_every / (avg_t+1e-8)),1)
61 self.pred_t = avg_t * self.total
AttributeError: 'NBProgressBar' object has no attribute 'start_t'
When I revert back the fastai code (in the fastai2 repo to commit: 59d878d) this crash goes away. I've isolated it to the subsequent commit d9ed4a8, with refactor learn.summary() that causes this error.
The text was updated successfully, but these errors were encountered:
First reported bug here:
https://forums.fast.ai/t/bug-learn-summary-does-not-work-on-2nd-transfer-learning/77897
tldr: learn.summary() crashes out with the following summary when doing a 2nd cycle of transfer learning
When I revert back the fastai code (in the fastai2 repo to commit: 59d878d) this crash goes away. I've isolated it to the subsequent commit d9ed4a8, with refactor learn.summary() that causes this error.
The text was updated successfully, but these errors were encountered: