TheLastBen / fast-stable-diffusion

fast-stable-diffusion + DreamBooth
MIT License
7.52k stars 1.31k forks source link

Messages that did not appear before will be output at startup. #2378

Open Kaka3279 opened 1 year ago

Kaka3279 commented 1 year ago

The following message is now output at "Start Stable-Diffusion".

"Downloading: "https://github.com/DagnyT/hardnet/raw/master/pretrained/train_liberty_with_aug/checkpoint_liberty_with_aug.pth" to /root/.cache/torch/hub/checkpoints/checkpoint_liberty_with_aug.pth 100% 5.10M/5.10M [00:00<00:00, 71.9MB/s] /usr/local/lib/python3.10/dist-packages/einops/einops.py:711: DeprecationWarning: invalid escape sequence '\s' """ /content/gdrive/MyDrive/sd/stable-diffusion-webui/modules/prompt_parser.py:346: DeprecationWarning: invalid escape sequence '(' """ /content/gdrive/MyDrive/sd/stable-diffusion-webui/modules/generation_parameters_copypaste.py:15: DeprecationWarning: invalid escape sequence '(' re_hypernet_hash = re.compile("(([0-9a-f]+))$") /content/gdrive/MyDrive/sd/stable-diffusion-webui/modules/models/diffusion/uni_pc/uni_pc.py:15: DeprecationWarning: invalid escape sequence '\h' """Create a wrapper class for the forward SDE (VP type). /usr/local/lib/python3.10/dist-packages/basicsr/metrics/niqe.py:5: DeprecationWarning: Please use convolve from the scipy.ndimage namespace, the scipy.ndimage.filters namespace is deprecated. from scipy.ndimage.filters import convolve /content/gdrive/MyDrive/sd/stable-diffusion-webui/extensions/deforum-for-automatic1111-webui/scripts/deforum_helpers/defaults.py:68: DeprecationWarning: invalid escape sequence '\ ' return """ /content/gdrive/MyDrive/sd/stable-diffusion-webui/extensions/deforum-for-automatic1111-webui/scripts/deforum_helpers/prompt.py:26: DeprecationWarning: invalid escape sequence '\S' math_parser = re.compile("(?P([\S\s]*?))", re.VERBOSE)" After that, the message is output as before, and "Stable diffusion Web-UI" can still be activated.

Is there a problem?

Please let me know.

HaikenEdge commented 1 year ago

Got a very similar message

/usr/local/lib/python3.10/dist-packages/einops/einops.py:711: DeprecationWarning: invalid escape sequence '\s' """ /content/gdrive/MyDrive/sd/stable-diffusion-webui/modules/prompt_parser.py:346: DeprecationWarning: invalid escape sequence '(' """ /content/gdrive/MyDrive/sd/stable-diffusion-webui/modules/generation_parameters_copypaste.py:15: DeprecationWarning: invalid escape sequence '(' re_hypernet_hash = re.compile("(([0-9a-f]+))$") /content/gdrive/MyDrive/sd/stable-diffusion-webui/modules/models/diffusion/uni_pc/uni_pc.py:15: DeprecationWarning: invalid escape sequence '\h' """Create a wrapper class for the forward SDE (VP type). /usr/local/lib/python3.10/dist-packages/basicsr/metrics/niqe.py:5: DeprecationWarning: Please use convolve from the scipy.ndimage namespace, the scipy.ndimage.filters namespace is deprecated. from scipy.ndimage.filters import convolve

TheLastBen commented 1 year ago

it's just deprecation warning

Kaka3279 commented 1 year ago

Thank you very much.