InvokeAI/invokeai
psychedelicious 04d8f2dfea fix(backend): fix controlnet zip len
Do not use `strict=True` when scaling controlnet conditioning.

When using `guess_mode` (e.g. `more_control` or `more_prompt`), `down_block_res_samples` and `scales` are zipped.

These two objects are of different lengths, so using zip's strict mode raises an error.

In testing, `len(scales) === len(down_block_res_samples) + 1`.

It appears this behaviour is intentional, as the final "extra" item in `scales` is used immediately afterwards.
2023-11-13 15:45:03 +11:00
..
app Merge branch 'main' into feat/ruff 2023-11-11 15:07:35 +11:00
assets feat(api): chore: pydantic & fastapi upgrade 2023-10-17 14:59:25 +11:00
backend fix(backend): fix controlnet zip len 2023-11-13 15:45:03 +11:00
configs Remove LowRA from Initial Models 2023-11-01 08:55:06 +11:00
frontend Merge branch 'main' into feat/ruff 2023-11-13 10:32:23 +11:00
version Update version to 3.3.0 2023-10-13 17:27:41 +11:00
__init__.py
README

Organization of the source tree:

app -- Home of nodes invocations and services
assets -- Images and other data files used by InvokeAI
backend -- Non-user facing libraries, including the rendering
	core.
configs -- Configuration files used at install and run times
frontend -- User-facing scripts, including the CLI and the WebUI
version -- Current InvokeAI version string, stored
	in version/invokeai_version.py