How can I use hypernetwork when I launch stable-diffusion in API model? #12305
Unanswered
handsonyooooo
asked this question in
Q&A
Replies: 1 comment 2 replies
-
same as you would in webUI payload = {
"prompt": "1girl, <hypernet:anime:1>",
"seed": 1,
"steps": 20
} same for LoRA |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have written a script for stable diffusion to generate multiple pictures an it worked in img2img mode.then I try to add hypernetwork Refer to someone else 's code but all failed.They add hypernetwork at different place and I am not sure which place is correct.
data:{
...........,
"hypernetwork_model": ["dic_de_mosaic.pt"],
}
data:{
...........,
"script_args": [0,True,True,"hypernetwork_model","dic_de_mosaic.pt",1,1],
}
data:{
...........,
"prompt": "man,fullbody, .....hypernet:dic_de_mosaic.pt:1",
}
Did anybody know how to add hypernetwork?
Beta Was this translation helpful? Give feedback.
All reactions