由于webui源码的变化,需要修改两个地方的import
1.tagger/ui.py
python
# 第十行
# from webui import wrap_gradio_gpu_call # 原代码
from modules.call_queue import wrap_gradio_gpu_call
1.preload.py
python
# 第4行开始
# from modules.shared import models_path # 原代码
from modules import paths
# default_ddp_path = Path(models_path, 'deepdanbooru') # 原代码
default_ddp_path = Path(paths.models_path, "deepdanbooru")