From 9d4b84ef687cc10335ffe74f7b541583e431f4f7 Mon Sep 17 00:00:00 2001 From: blessedcoolant <54517381+blessedcoolant@users.noreply.github.com> Date: Fri, 16 Jun 2023 23:57:57 +1200 Subject: [PATCH 1/2] feat: Upgrade to Diffusers 0.17.1 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 70a87359a4a..8707c6c911f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ dependencies = [ "controlnet-aux>=0.0.4", "timm==0.6.13", # needed to override timm latest in controlnet_aux, see https://github.com/isl-org/ZoeDepth/issues/26 "datasets", - "diffusers[torch]~=0.17.0", + "diffusers[torch]~=0.17.1", "dnspython==2.2.1", "dynamicprompts", "easing-functions", From 0ae632535360f13564b6398e94627e3ba66a8c0f Mon Sep 17 00:00:00 2001 From: blessedcoolant <54517381+blessedcoolant@users.noreply.github.com> Date: Mon, 19 Jun 2023 23:20:53 +1200 Subject: [PATCH 2/2] chore: Add torchsde as a dependency for the SDE schedulers --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 8707c6c911f..03396312ac8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -83,6 +83,7 @@ dependencies = [ "torch~=2.0.0", "torchvision>=0.14.1", "torchmetrics", + "torchsde==0.2.5", "transformers~=4.30", "uvicorn[standard]==0.21.1", "windows-curses; sys_platform=='win32'",