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
With pytorch_lightning 1.7 : ModuleNotFoundError: No module named 'pytorch_lightning.metrics'
Solution : change imports in python train_*.py from import pytorch_lightning.metrics.functional... into ```import torchmetrics.functional `` and install torchmetrics (pip install torchmetrics for example) .
The text was updated successfully, but these errors were encountered:
With pytorch_lightning 1.7 : ModuleNotFoundError: No module named 'pytorch_lightning.metrics'
Solution : change imports in python train_*.py from
import pytorch_lightning.metrics.functional...
into ```import torchmetrics.functional `` and install torchmetrics (pip install torchmetrics for example) .The text was updated successfully, but these errors were encountered: