Skip to content

Commit 184b9c8

Browse files
authored
Merge pull request #411 from ionite34/change-defaults
Change some inference defaults
2 parents 7605602 + cc9dfbb commit 184b9c8

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

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

StabilityMatrix.Avalonia/ViewModels/Inference/FreeUCardViewModel.cs

+6-2
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,25 @@ public partial class FreeUCardViewModel : LoadableViewModelBase
1414
public const string ModuleKey = "FreeU";
1515

1616
[ObservableProperty]
17+
[NotifyDataErrorInfo]
1718
[Required]
1819
[Range(0D, 10D)]
19-
private double b1 = 1.1;
20+
private double b1 = 1.5;
2021

2122
[ObservableProperty]
23+
[NotifyDataErrorInfo]
2224
[Required]
2325
[Range(0D, 10D)]
24-
private double b2 = 1.2;
26+
private double b2 = 1.6;
2527

2628
[ObservableProperty]
29+
[NotifyDataErrorInfo]
2730
[Required]
2831
[Range(0D, 10D)]
2932
private double s1 = 0.9;
3033

3134
[ObservableProperty]
35+
[NotifyDataErrorInfo]
3236
[Required]
3337
[Range(0D, 10D)]
3438
private double s2 = 0.2;

StabilityMatrix.Avalonia/ViewModels/Inference/SamplerCardViewModel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public partial class SamplerCardViewModel : LoadableViewModelBase, IParametersLo
4242
private bool isDenoiseStrengthEnabled;
4343

4444
[ObservableProperty]
45-
private double denoiseStrength = 1;
45+
private double denoiseStrength = 0.7f;
4646

4747
[ObservableProperty]
4848
[property: Category("Settings")]

0 commit comments

Comments
 (0)