In the requirements.txt file, you specify pytorch_lightning version as >=0.4.6. Therefore one (like me) may install a more current version than 0.4.6 like the most recent 1.4.1. But there is not models module since 0.4.8. I would highly recommend specifying pytorch_lightning version to avoid non-existing modules errors.
In the requirements.txt file, you specify pytorch_lightning version as
>=0.4.6
. Therefore one (like me) may install a more current version than0.4.6
like the most recent1.4.1
. But there is notmodels
module since0.4.8
. I would highly recommend specifying pytorch_lightning version to avoid non-existing modules errors.