Browse Source

changed FreeU defaults to match recommended SD1.5 defaults & changed denoiseStrength default to 0.7 from 1.0

pull/333/head
JT 11 months ago
parent
commit
3ae60f4a21
  1. 2
      CHANGELOG.md
  2. 4
      StabilityMatrix.Avalonia/ViewModels/Inference/FreeUCardViewModel.cs
  3. 2
      StabilityMatrix.Avalonia/ViewModels/Inference/SamplerCardViewModel.cs

2
CHANGELOG.md

@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
## v2.7.2
### Changed
- Changed Symlink shared folder link targets for Automatic1111 and ComfyUI. From `ControlNet -> models/controlnet` to `ControlNet -> models/controlnet/ControlNet` and `T2IAdapter -> models/controlnet/T2IAdapter`.
- Changed FreeU defaults to match recommended SD1.5 defaults
- Changed default denoise strength from 1.0 to 0.7
### Fixed
- Fixed ControlNet / T2IAdapter shared folder links for Automatic1111 conflicting with each other
- Fixed URIScheme registration errors on Linux

4
StabilityMatrix.Avalonia/ViewModels/Inference/FreeUCardViewModel.cs

@ -16,12 +16,12 @@ public partial class FreeUCardViewModel : LoadableViewModelBase
[ObservableProperty]
[Required]
[Range(0D, 10D)]
private double b1 = 1.1;
private double b1 = 1.5;
[ObservableProperty]
[Required]
[Range(0D, 10D)]
private double b2 = 1.2;
private double b2 = 1.6;
[ObservableProperty]
[Required]

2
StabilityMatrix.Avalonia/ViewModels/Inference/SamplerCardViewModel.cs

@ -42,7 +42,7 @@ public partial class SamplerCardViewModel : LoadableViewModelBase, IParametersLo
private bool isDenoiseStrengthEnabled;
[ObservableProperty]
private double denoiseStrength = 1;
private double denoiseStrength = 0.7f;
[ObservableProperty]
[property: Category("Settings")]

Loading…
Cancel
Save