From c457bb9462db0c6576d096dcaffac03d7e351563 Mon Sep 17 00:00:00 2001 From: Ionite Date: Mon, 9 Oct 2023 01:13:34 -0400 Subject: [PATCH] Change default upscale to 2x --- CHANGELOG.md | 2 ++ .../ViewModels/Inference/UpscalerCardViewModel.cs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b835a38..2a829382 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2 - The index is 1-based, so the first image in a batch is index 1, and the last image is the batch size. - Currently this generates different individual images for batches using Ancestral samplers, due to an upstream ComfyUI issue with noise masking. Looking into fixing this. - Inference Batches option now is implemented, previously the setting had no effect +### Changed +- Default upscale factor for Inference is now 2x instead of 1x ### Fixed - Fixed batch combined image grids not showing metadata and not being importable - Fixed "Call from invalid thread" errors that sometimes occured during update notifications diff --git a/StabilityMatrix.Avalonia/ViewModels/Inference/UpscalerCardViewModel.cs b/StabilityMatrix.Avalonia/ViewModels/Inference/UpscalerCardViewModel.cs index 1975fb68..ceef75c6 100644 --- a/StabilityMatrix.Avalonia/ViewModels/Inference/UpscalerCardViewModel.cs +++ b/StabilityMatrix.Avalonia/ViewModels/Inference/UpscalerCardViewModel.cs @@ -28,7 +28,7 @@ public partial class UpscalerCardViewModel : LoadableViewModelBase private readonly ServiceManager vmFactory; [ObservableProperty] - private double scale = 1; + private double scale = 2; [ObservableProperty] private ComfyUpscaler? selectedUpscaler = ComfyUpscaler.Defaults[0];