Add support for IPAdapterFull models. The changes are based on this upstream PR: https://github.com/tencent-ailab/IP-Adapter/pull/139 .

This commit is contained in:
Ryan Dick
2023-11-29 15:10:45 -05:00
committed by Kent Keirsey
parent 77933a0a85
commit 693c6cf5e4
2 changed files with 59 additions and 6 deletions

View File

@ -37,6 +37,14 @@ def build_dummy_sd15_unet_input(torch_device):
"unet_model_id": "runwayml/stable-diffusion-v1-5",
"unet_model_name": "stable-diffusion-v1-5",
},
# SD1.5, IPAdapterFull
{
"ip_adapter_model_id": "InvokeAI/ip-adapter-full-face_sd15",
"ip_adapter_model_name": "ip-adapter-full-face_sd15",
"base_model": BaseModelType.StableDiffusion1,
"unet_model_id": "runwayml/stable-diffusion-v1-5",
"unet_model_name": "stable-diffusion-v1-5",
},
],
)
@pytest.mark.slow