当前位置:AIGC资讯 > AIGC > 正文

webui 通过提示词矩阵的文本框功能添加负面标签

众所周知使用该功能可以添加很多行tag,脚本会解析一行中所有tag内容,逐行生成图片

默认每行输入是按照正咒的形式输入的,跑的多了,出现了很多一个脑袋两个身体之类的怪东西,通过添加负面标签可以一定程度上减小这种情况。但是界面上没用单独添加负面标签的位置。

for line in lines:
            if "--" in line:
                try:
                    args = cmdargs(line)
                except Exception:
                    print(f"Error parsing line [line] as commandline:", file=sys.stderr)
                    print(traceback.format_exc(), file=sys.stderr)
                    args = {"prompt": line}
            else:
                args = {"prompt": line}

阅读源码可以发现,该脚本默认是以prompt为参数,解析输入行。 而添加-- 可以输入其他的命令

prompt_tags = {
    "sd_model": None,
    "outpath_samples": process_string_tag,
    "outpath_grids": process_string_tag,
    "prompt_for_display": process_string_tag,
    "prompt": process_string_tag,
    "negative_prompt": process_string_tag,

因此可以修改每行字符串为如下格式,进行逆咒添加

--prompt "你的正咒" --negative_prompt "你的逆咒"

加引号是因为默认解析时以空格作为分割标志,咒文里面难免有带空格的标签

例子:

--prompt "masterpiece, best quality,, Photorealistic, extremely fine and beautiful, perfect detailed,Ishtar\(fate\),warframe,,1girl,full_body,beautiful and clear background,detailed beautiful eyes, floating hair ,,contour deepening, " --negative_prompt "bad hands,nsfw"

更新时间 2023-12-30