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

Stable Diffusion搭建问题记录

1、点击generator生成图片后,直接waiting一段时间后,直接断开没有任何提示!

这个问题是困扰我最久的一个问题,原因:本机开启了代理,代理将127.0.0.1解析到了别的地方,因此控制台无任何异常,前段报了一下类似socket的异常,太坑了,搞了我4天,我醉了,解决方案,关掉代理,然后mac,网络-高级选项-http/https/socket代理都关闭,就可以了

2、 点击生成后控制台,报错error: input types 'tensor<1x77x1xf16>' and 'tensor<1xf32>' are not broadcast compatible,LLVM ERROR: Failed to infer result type(s).

原因:

解决:python webui.py --no-half --opt-split-attention-v1 

stable-diffusion/stable-diffusion-webui/webui-macos-env.sh文件修改

export COMMANDLINE_ARGS="--skip-torch-cuda-test --upcast-sampling --no-half-vae --use-cpu interrogate"

export COMMANDLINE_ARGS="--skip-torch-cuda-test --upcast-sampling --no-half-vae --use-cpu interrogate --no-half --opt-split-attention-v1"

更新时间 2023-12-28