remove unneeded warning filter

This commit is contained in:
AUTOMATIC 2023-04-29 12:39:05 +03:00
parent ee71eee181
commit aee6d9bb74
1 changed files with 0 additions and 1 deletions

View File

@ -21,7 +21,6 @@ import torch
import pytorch_lightning # pytorch_lightning should be imported after torch, but it re-enables warnings on import so import once to disable them
warnings.filterwarnings(action="ignore", category=DeprecationWarning, module="pytorch_lightning")
warnings.filterwarnings(action="ignore", category=UserWarning, module="torchvision")
warnings.filterwarnings(action='ignore', category=UserWarning, message='TypedStorage is deprecated')
startup_timer.record("import torch")