Stable Diffusion / negative_hand-neg.ptを使ってみる
指の本数がおかしい場合に修正する方法です
手の指の本数が4本から5本に正しくなりました
negative_hand Negative Embedding
https://civitai.com/models/56519/negativehand-negative-embedding
ダウンロードして配置します
diffusersでの使用方法
WEBUIの解説はたくさんあるのでこちらでは別の方法を示します
#textual_inversion = "embed/EasyNegative"#@param {type:"string"}
#token = "EasyNegative"#@param {type:"string"}
#embed_weight_name = "EasyNegative.safetensors"#@param {type:"string"}
#
textual_inversion = "/content/model/negative_hand-neg.pt"#@param {type:"string"}
#
token = "negative_hand-neg"#@param {type:"string"}
#
embed_weight_name = "negative_hand-neg.pt"#@param {type:"string"}
if embed_weight_name != "":
pipe.load_textual_inversion(textual_inversion, weight_name=embed_weight_name,token=token)
else:
pipe.load_textual_inversion(textual_inversion, token=token)
#
ネガティブプロンプト
“negative_hand-neg"のワードをネガティブプロンプトに追加します
ディスカッション
コメント一覧
まだ、コメントがありません