update notes

This commit is contained in:
Vladimir Mandic
2024-06-20 09:01:24 -04:00
parent 092a326c09
commit 9be91e2e2d
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -3,12 +3,11 @@
## Pending
- Diffusers==0.30.0
- https://github.com/huggingface/diffusers/pull/8566
- https://github.com/huggingface/diffusers/pull/8584
## Update for 2024-06-19
## Update for 2024-06-20
### Highlights for 2024-06-19
### Highlights for 2024-06-20
Following zero-day **SD3** release, a week later here's a refresh with more than a few improvements.
But there's more than SD3:
@@ -51,6 +50,7 @@ But there's more than SD3:
- improved google.colab support
- css tweaks for standardui
- css tweaks for modernui
- additional torch gc checks, thanks @Disty0!
### Fixes
+1
View File
@@ -11,6 +11,7 @@ Main ToDo list can be found at [GitHub projects](https://github.com/users/vladma
- diffusers public callbacks
- include reference styles
- lora: sc lora, dora, etc
- sd3 controlnet: <https://github.com/huggingface/diffusers/pull/8566>
## Experimental
+2 -3
View File
@@ -12,10 +12,9 @@ debug_enabled = os.environ.get('SD_PROMPT_DEBUG', None)
debug = shared.log.trace if os.environ.get('SD_PROMPT_DEBUG', None) is not None else lambda *args, **kwargs: None
debug('Trace: PROMPT')
orig_encode_token_ids_to_embeddings = EmbeddingsProvider._encode_token_ids_to_embeddings # pylint: disable=protected-access
token_dict = None
token_type = None
token_dict = None # used by helper get_tokens
token_type = None # used by helper get_tokens
cache = {}
cache_type = None
def compel_hijack(self, token_ids: torch.Tensor,