打印

[教程] 1.去衣初级教程:保姆摸手教你在线给图片去衣脱衣,只需找你喜欢的女星图片就好。[10P]

本主题由 System 于 2023-6-13 05:00 解除限时高亮
57

1.去衣初级教程:保姆摸手教你在线给图片去衣脱衣,只需找你喜欢的女星图片就好。[10P]

本人在这一贴中已经展示了之前的成果,
thread-11651480-1-1.html
有兴趣的朋友可以看看。
另外这是去衣中级教程:
https://mkm.sisurl.com/forum/thread-11656897-1-1.html

训练模型太耗时,还是给图片脱衣快捷一些,也希望更多的人加入到这个行列中来,做好的成品多在论坛分享给大家看看。

1.能科学上网最好,想要的可以私信我。
首先登陆https://colab.research.google.com/
谷歌账号可以在ourplay app或者淘宝直接买账号,10元20元一个好像。
若自己新注册谷歌账号需要国外手机验证码,可以在这个链接去租手机号,也不贵,具体攻略自己查。
https://sms-activate.org/#

2.在Colab的顶部菜单点“代码执行程序”,打开“更改运行时类型”,按下图设置GPU,再点右上“连接”。注:Colab现在白嫖已经变得很鸡肋,动不动就掉线,有能力的就订阅一下时长,按下图设置一个小时大概一元多一点,也不贵,也顺心。


3.连接后检查一下耗时,是1.96就是最省钱的了,够用了。然后点左上“+代码”,出现左下播放按钮。


4.在框内粘贴如下代码,再点击播放按钮运行,一键安装SD。此过程一般6-15分钟左右,请耐心等待。
复制内容到剪贴板
代码:
%cd /content

%env TF_CPP_MIN_LOG_LEVEL=1

!apt -y update -qq
!wget http://launchpadlibrarian.net/367274644/libgoogle-perftools-dev_2.5-2.2ubuntu3_amd64.deb
!wget https://launchpad.net/ubuntu/+source/google-perftools/2.5-2.2ubuntu3/+build/14795286/+files/google-perftools_2.5-2.2ubuntu3_all.deb
!wget https://launchpad.net/ubuntu/+source/google-perftools/2.5-2.2ubuntu3/+build/14795286/+files/libtcmalloc-minimal4_2.5-2.2ubuntu3_amd64.deb
!wget https://launchpad.net/ubuntu/+source/google-perftools/2.5-2.2ubuntu3/+build/14795286/+files/libgoogle-perftools4_2.5-2.2ubuntu3_amd64.deb
!apt install -qq libunwind8-dev
!dpkg -i *.deb
%env LD_PRELOAD=libtcmalloc.so
!rm *.deb

!apt -y install -qq aria2 libcairo2-dev pkg-config python3-dev
!pip install -q torch==1.13.1+cu116 torchvision==0.14.1+cu116 torchaudio==0.13.1 torchtext==0.14.1 torchdata==0.5.1 --extra-index-url https://download.pytorch.org/whl/cu116 -U
!pip install -q xformers==0.0.16 triton==2.0.0 -U

!git clone -b v2.1 https://github.com/camenduru/stable-diffusion-webui
!git clone https://huggingface.co/embed/negative /content/stable-diffusion-webui/embeddings/negative
!git clone https://huggingface.co/embed/lora /content/stable-diffusion-webui/models/Lora/positive
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/embed/upscale/resolve/main/4x-UltraSharp.pth -d /content/stable-diffusion-webui/models/ESRGAN -o 4x-UltraSharp.pth
!wget https://raw.githubusercontent.com/camenduru/stable-diffusion-webui-scripts/main/run_n_times.py -O /content/stable-diffusion-webui/scripts/run_n_times.py
!git clone https://github.com/deforum-art/deforum-for-automatic1111-webui /content/stable-diffusion-webui/extensions/deforum-for-automatic1111-webui
!git clone https://github.com/camenduru/stable-diffusion-webui-images-browser /content/stable-diffusion-webui/extensions/stable-diffusion-webui-images-browser
!git clone https://github.com/camenduru/stable-diffusion-webui-huggingface /content/stable-diffusion-webui/extensions/stable-diffusion-webui-huggingface
!git clone https://github.com/camenduru/sd-civitai-browser /content/stable-diffusion-webui/extensions/sd-civitai-browser
!git clone https://github.com/kohya-ss/sd-webui-additional-networks /content/stable-diffusion-webui/extensions/sd-webui-additional-networks
!git clone https://github.com/Mikubill/sd-webui-controlnet /content/stable-diffusion-webui/extensions/sd-webui-controlnet
!git clone https://github.com/fkunn1326/openpose-editor /content/stable-diffusion-webui/extensions/openpose-editor
!git clone https://github.com/jexom/sd-webui-depth-lib /content/stable-diffusion-webui/extensions/sd-webui-depth-lib
!git clone https://github.com/hnmr293/posex /content/stable-diffusion-webui/extensions/posex
!git clone https://github.com/nonnonstop/sd-webui-3d-open-pose-editor /content/stable-diffusion-webui/extensions/sd-webui-3d-open-pose-editor
!git clone https://github.com/camenduru/sd-webui-tunnels /content/stable-diffusion-webui/extensions/sd-webui-tunnels
!git clone https://github.com/etherealxx/batchlinks-webui /content/stable-diffusion-webui/extensions/batchlinks-webui
!git clone https://github.com/camenduru/stable-diffusion-webui-catppuccin /content/stable-diffusion-webui/extensions/stable-diffusion-webui-catppuccin
!git clone https://github.com/KohakuBlueleaf/a1111-sd-webui-locon /content/stable-diffusion-webui/extensions/a1111-sd-webui-locon
!git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui-rembg /content/stable-diffusion-webui/extensions/stable-diffusion-webui-rembg
!git clone https://github.com/ashen-sensored/stable-diffusion-webui-two-shot /content/stable-diffusion-webui/extensions/stable-diffusion-webui-two-shot
!git clone https://github.com/camenduru/sd_webui_stealth_pnginfo /content/stable-diffusion-webui/extensions/sd_webui_stealth_pnginfo
!git clone https://github.com/thomasasfk/sd-webui-aspect-ratio-helper /content/stable-diffusion-webui/extensions/sd-webui-aspect-ratio-helper
%cd /content/stable-diffusion-webui
!git reset --hard
!git -C /content/stable-diffusion-webui/repositories/stable-diffusion-stability-ai reset --hard

!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11e_sd15_ip2p_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11e_sd15_ip2p_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11e_sd15_shuffle_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11e_sd15_shuffle_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11p_sd15_canny_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_canny_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11f1p_sd15_depth_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11f1p_sd15_depth_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11p_sd15_inpaint_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_inpaint_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11p_sd15_lineart_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_lineart_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11p_sd15_mlsd_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_mlsd_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11p_sd15_normalbae_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_normalbae_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11p_sd15_openpose_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_openpose_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11p_sd15_scribble_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_scribble_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11p_sd15_seg_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_seg_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11p_sd15_softedge_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_softedge_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11p_sd15s2_lineart_anime_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15s2_lineart_anime_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/control_v11f1e_sd15_tile_fp16.safetensors -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11f1e_sd15_tile_fp16.safetensors
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11e_sd15_ip2p_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11e_sd15_ip2p_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11e_sd15_shuffle_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11e_sd15_shuffle_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11p_sd15_canny_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_canny_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11f1p_sd15_depth_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11f1p_sd15_depth_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11p_sd15_inpaint_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_inpaint_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11p_sd15_lineart_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_lineart_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11p_sd15_mlsd_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_mlsd_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11p_sd15_normalbae_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_normalbae_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11p_sd15_openpose_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_openpose_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11p_sd15_scribble_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_scribble_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11p_sd15_seg_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_seg_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11p_sd15_softedge_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15_softedge_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11p_sd15s2_lineart_anime_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11p_sd15s2_lineart_anime_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/raw/main/control_v11f1e_sd15_tile_fp16.yaml -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o control_v11f1e_sd15_tile_fp16.yaml
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/t2iadapter_style_sd14v1.pth -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o t2iadapter_style_sd14v1.pth
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/t2iadapter_sketch_sd14v1.pth -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o t2iadapter_sketch_sd14v1.pth
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/t2iadapter_seg_sd14v1.pth -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o t2iadapter_seg_sd14v1.pth
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/t2iadapter_openpose_sd14v1.pth -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o t2iadapter_openpose_sd14v1.pth
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/t2iadapter_keypose_sd14v1.pth -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o t2iadapter_keypose_sd14v1.pth
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/t2iadapter_depth_sd14v1.pth -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o t2iadapter_depth_sd14v1.pth
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/t2iadapter_color_sd14v1.pth -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o t2iadapter_color_sd14v1.pth
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/t2iadapter_canny_sd14v1.pth -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o t2iadapter_canny_sd14v1.pth
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/t2iadapter_canny_sd15v2.pth -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o t2iadapter_canny_sd15v2.pth
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/t2iadapter_depth_sd15v2.pth -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o t2iadapter_depth_sd15v2.pth
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/t2iadapter_sketch_sd15v2.pth -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o t2iadapter_sketch_sd15v2.pth
!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/ControlNet-v1-1/resolve/main/t2iadapter_zoedepth_sd15v1.pth -d /content/stable-diffusion-webui/extensions/sd-webui-controlnet/models -o t2iadapter_zoedepth_sd15v1.pth

!mkdir -p /content/stable-diffusion-webui/models/Lora
!wget https://civitai.com/api/download/models/63354 -O /content/stable-diffusion-webui/models/Lora/MS_Real_POVPussyFromBelow_Lite.safetensors
# Pussy From Below
!wget https://civitai.com/api/download/models/12323 -O /content/stable-diffusion-webui/models/Lora/lora_sitting_320.pt
# Sitting Pussy Position
!wget https://civitai.com/api/download/models/28152 -O /content/stable-diffusion-webui/models/Lora/Pussy_Alicia_v01.safetensors
# StablePussy Collection
!wget https://civitai.com/api/download/models/18077 -O /content/stable-diffusion-webui/models/Lora/Creampie_v11.safetensors
# liu shui duo Creampie & Hairy Pussy
!wget https://civitai.com/api/download/models/27033 -O /content/stable-diffusion-webui/models/Lora/JK-puffy-nipples-v01.safetensors
!wget https://civitai.com/api/download/models/35553 -O /content/stable-diffusion-webui/models/Lora/BreastInClass-AsianFlatChest_v10.safetensors
# Tips:
# Lora weights 0.2-0.9
# Use keyword "flatchest", set this keywordweight up to 1.4, you will love it.

!aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/chilloutmix/resolve/main/chilloutmix_NiPrunedFp32Fix.safetensors -d /content/stable-diffusion-webui/models/Stable-diffusion -o chilloutmix_NiPrunedFp32Fix.safetensors

!sed -i -e '''/    prepare_environment()/a\    os.system\(f"""sed -i -e ''"s/dict()))/dict())).cuda()/g"'' /content/stable-diffusion-webui/repositories/stable-diffusion-stability-ai/ldm/util.py""")''' /content/stable-diffusion-webui/launch.py
!sed -i -e 's/"sd_model_checkpoint"\,/"sd_model_checkpoint\,sd_vae\,CLIP_stop_at_last_layers"\,/g' /content/stable-diffusion-webui/modules/shared.py

!python launch.py --listen --xformers --enable-insecure-extension-access --theme dark --gradio-queue --multiple
5.安装完成后会有3个URL,一般点击最上面的就好。


6.若要重启只需运行下面代码即可:
复制内容到剪贴板
代码:
!python launch.py --listen --xformers --enable-insecure-extension-access --theme dark --gradio-queue --multiple
7.进入SD后,选择img2img,再选择Inpaint,上传一张图片,最好是衣着分明一点、肢体正面一点的,把想脱的服装涂黑,如图:


8.按下图设置,没提到的不用改。①仅画蒙版 ②采样方法(越底越精细越慢) ③采样步数(越高越精细越慢) ④分辨率最好保持和原图一致,或者等比例缩小,分辨率越大就越慢,这里为了出图快一点我等比缩小了一半。如果SD提示尺寸不对的话可改为百位整数 ⑤每次作图张数,越多花时间越久 ⑥每次处理几个批次的图片,在⑤的基础上乘以这个倍数就是总张数 ⑦CFG越大指让AI越侧重于提示词,一般默认就好,出图效果不佳则可略微加大 ⑧按经验0.65-0.75效果最佳,数值越小越不改变原图,越大越让AI放飞自我,若出图效果不佳,可优先更改这里。


9.在正面负面提示词如图分别填入以下咒语:


正面:
((nude)),(pussy),pink_nipples,breasts,(exposed little chest:1.2),(high detailed skin:0.9),best quality,photorealistic,realistic,8k high definition

负面:
(deformed iris,semi-realistic,3d,render,cg,painting,drawing,cartoon,anime,comic:0.6),(bad_prompt_version2:0.8),(bad anatomy:1.21),(worst quality:2),(low quality:2),(normal quality:2),lowers,normal quality

10.点击右上角“Generate”出图,需要等待一下。可切回Colab窗口看看工作进度:


11.可以看到图三的效果最好,点选可以放大。这里没时间再调试,如果觉得哪里不满意的可以点下方的“Send to inpaint”进行二次重绘,涂黑不满意的地方重新作图。


12.有的图一次就可以得很好的效果,有的就需要微调咒语和各参数好几次,甚至把内衣到内裤之间的腰部全部涂黑到皮肤边缘就能更协调,这个请自己多试几遍,都会出效果好的图。另外有的姿势比如后方视角翘臀、侧卧沙发等,需要添加相应咒语,有时间的伙伴可以多试试。比如view from behind。在这里推荐一个tag生成网址:https://tinygeeker.github.io/p/ai-prompt-generator/#/ 勾选大人会有18+提示词。

13.成果展示,去衣前后效果对比:




14.手机也可以操作,只需要用Firefox浏览器,打开桌面版网站即可,别的浏览器很多都不能涂黑色蒙版。

PS:有没有大佬能把图像分割模型SD-webui-segment-anything和SD中文集成到colab方法告知一下,试了很多方法都集成不进去。尤其中文集成后想一进入SD就是中文界面,而不需要选中文后再重启,谢谢。集成这些插件主要是为了能更方便新手,给新手更优渥的硬件。希望有大佬能够告知一下。

[ 本帖最后由 只想抽支烟 于 2023-6-10 13:25(GMT+8) 编辑 ]
附件: 您所在的用户组无法下载或查看附件
本帖最近评分记录
  • 依啼子 金币 +20 回复超过90 2024-1-2 18:04
  • lieaait 金币 +20 回复达到60 2023-7-21 00:56
  • lieaait 金币 +20 回复达到30 2023-6-17 11:12

TOP

1
大佬太强了,教程很详细,让小白也能看懂

TOP

1
试了几次,安装SD的时候都会报错,咱小白也不懂到底是哪里出错了。

[ 本帖最后由 7788414222 于 2023-6-5 02:14(GMT+8) 编辑 ]
附件: 您所在的用户组无法下载或查看附件

TOP

1
世界上有一种人,看到数字就困,如果我失眠了,可以看一看这个帖子,管用。

TOP

2
引用:
原帖由 7788414222 于 2023-6-5 02:13 发表
试了几次,安装SD的时候都会报错,咱小白也不懂到底是哪里出错了。
我检查了一下代码,发现粘贴进去系统帮我删了点东西。现在重新贴好了,应该没问题了。你再试试。如果运行按钮没有变红自动终止,就一直留它转下去。

TOP

0
安装SD的时候还是会失败,是不是因为没订阅用的免费的掉线了呀?

TOP

0
引用:
原帖由 只想抽支烟 于 2023-6-5 03:45 发表


我检查了一下代码,发现粘贴进去系统帮我删了点东西。现在重新贴好了,应该没问题了。你再试试。如果运行按钮没有变红自动终止,就一直留它转下去。 ...
上午跑了几次老是掉线,然后晚上刚跑了2次,又报错了。
附件: 您所在的用户组无法下载或查看附件

TOP

1
引用:
原帖由 kamieyx 于 2023-6-5 18:04 发表
安装SD的时候还是会失败,是不是因为没订阅用的免费的掉线了呀?
输代码前右上角提示连接成功了吗?如果连接成功就应该没问题。现在掉线很严重,不清楚是不是会安装到一半的时候掉线。另外我之前有看到新闻说Colab为了减轻服务器压力,想使用SD必须订阅,不知道是真是假。
本帖最近评分记录
  • lieaait 金币 +1 认真回复,奖励! 2023-6-6 11:13

TOP

0
引用:
原帖由 7788414222 于 2023-6-5 19:25 发表


上午跑了几次老是掉线,然后晚上刚跑了2次,又报错了。
跑了2次是已经进入SD成功运行了对吗?如果是的话,那报错就是掉线了。

TOP

0
引用:
原帖由 只想抽支烟 于 2023-6-6 10:35 发表


跑了2次是已经进入SD成功运行了对吗?如果是的话,那报错就是掉线了。
没进去呢,我觉得很大几率是没订阅的原因,但是付款又要美国地址,没有万事达的话好像付不了吧

TOP

当前时区 GMT+8, 现在时间是 2024-5-3 00:41