Unused imports

Hi,

I am currently fighting to use transfer learning with a custom CNN-based model, and in the process I am messing with a few scripts. I believe in some cases there are unused imports, for example:

in rnn.py

from fastai.callback import *

and

from fastai.basic_train import Learner

don’t seem to be used.

Hope this helps, and I will let you know of other details like this if you think it’s useful.

The import of callback might be useless yes, as for the second one, it’s just because I forgot to type the annotation in the callback, but it is now used ;).

2 Likes