From d7fcce24c3ab5df1413afdf4e2bce453c3cad8ad Mon Sep 17 00:00:00 2001 From: DeepBeepMeep Date: Tue, 25 Mar 2025 08:13:00 +0100 Subject: [PATCH] Fixed Sage detection support --- README.md | 4 +++- wan/modules/attention.py | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index abd82fd..e37c10d 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,13 @@ In this repository, we present **Wan2.1**, a comprehensive and open suite of vid ## 🔥 Latest News!! +* Mar 19 2022: 👋 Wan2.1GP v3.1: Faster launch and RAM optimizations (should require less RAM to run)\ + You will need one more *pip install -r requirements.txt* * Mar 18 2022: 👋 Wan2.1GP v3.0: - New Tab based interface, yon can switch from i2v to t2v conversely without restarting the app - Experimental Dual Frames mode for i2v, you can also specify an End frame. It doesn't always work, so you will need a few attempts. - You can save default settings in the files *i2v_settings.json* and *t2v_settings.json* that will be used when launching the app (you can also specify the path to different settings files) - - Slight acceleration with loras + - Slight acceleration with loras\ You will need one more *pip install -r requirements.txt* Many thanks to *Tophness* who created the framework (and did a big part of the work) of the multitabs and saved settings features * Mar 18 2022: 👋 Wan2.1GP v2.11: Added more command line parameters to prefill the generation settings + customizable output directory and choice of type of metadata for generated videos. Many thanks to *Tophness* for his contributions. You will need one more *pip install -r requirements.txt* to reflect new dependencies\ diff --git a/wan/modules/attention.py b/wan/modules/attention.py index cbb578f..6861283 100644 --- a/wan/modules/attention.py +++ b/wan/modules/attention.py @@ -135,9 +135,9 @@ def get_supported_attention_modes(): ret = get_attention_modes() if not sage_supported: if "sage" in ret: - del ret["sage"] + ret.remove("sage") if "sage2" in ret: - del ret["sage2"] + ret.remove("sage2") return ret __all__ = [