update changelog

This commit is contained in:
Vladimir Mandic
2023-12-02 08:45:52 -05:00
parent 0f19c53eed
commit bebfc908a8
2 changed files with 5 additions and 3 deletions
+3 -2
View File
@@ -11,12 +11,13 @@ Also new is support for **SDXL-Turbo** as well as new **Kandinsky 3** models and
- allows control of *latent clamping*, *color centering* and *range maximimization*
- supported by *XYZ grid*
- **IP adapter**
- lightweight implementation of T2I adapters which can guide generation towards specific image style
- lightweight native implementation of T2I adapters which can guide generation towards specific image style
- supports most T2I models, not limited to SD 1.5
- models are auto-downloaded on first use
- for IP adapter support in *Original* backend, use standard *ControlNet* extension
- **AnimateDiff**
- lightweight implementation of AnimateDiff basic models *(1.4, 1.5, 1.5.2)*
- lightweight native implementation of AnimateDiff models:
*AnimateDiff 1.4, 1.5 v1, 1.5 v2, AnimateFace*
- supports SD 1.5 only
- models are auto-downloaded on first use
- for video saving support, see video support section
+2 -1
View File
@@ -21,6 +21,7 @@ ADAPTERS = {
'Motion 1.4': 'guoyww/animatediff-motion-adapter-v1-4',
'Motion 1.5 v1': 'guoyww/animatediff-motion-adapter-v1-5',
'Motion 1.5 v2' :'guoyww/animatediff-motion-adapter-v1-5-2',
# 'Motion SD-XL Beta v1' :'vladmandic/animatediff-sdxl',
'TemporalDiff': 'vladmandic/temporaldiff',
'AnimateFace': 'vladmandic/animateface',
}
@@ -58,7 +59,7 @@ def set_adapter(adapter_name: str = 'None'):
shared.sd_model = orig_pipe
orig_pipe = None
return
if shared.sd_model_type != 'sd':
if shared.sd_model_type != 'sd' and shared.sd_model_type != 'sdxl':
shared.log.warning(f'AnimateDiff: unsupported model type: {shared.sd_model.__class__.__name__}')
return
if motion_adapter is not None and loaded_adapter == adapter_name and shared.sd_model.__class__.__name__ == 'AnimateDiffPipeline':