make it module specific
This commit is contained in:
parent
fc4d593b4e
commit
f2ed6295b9
1 changed files with 1 additions and 1 deletions
2
webui.py
2
webui.py
|
@ -19,7 +19,7 @@ startup_timer = timer.Timer()
|
||||||
|
|
||||||
import torch
|
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
|
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)
|
warnings.filterwarnings(action="ignore", category=DeprecationWarning, module="pytorch_lightning")
|
||||||
startup_timer.record("import torch")
|
startup_timer.record("import torch")
|
||||||
|
|
||||||
import gradio
|
import gradio
|
||||||
|
|
Loading…
Reference in a new issue