aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-01-07 09:34:42 +0000
committerGitHub <noreply@github.com>2023-01-07 09:34:42 +0000
commit983167e621aa55431f6dc7e0a26f021a66a33cd0 (patch)
tree9739844afc64ad140451c2c05d01eb097a643ddd
parentc295e4a2446bcc2663f497ba8afa14cec80de332 (diff)
parent82c1f10b144f733460feead0bdc37a861489dc57 (diff)
downloadstable-diffusion-webui-gfx803-983167e621aa55431f6dc7e0a26f021a66a33cd0.tar.gz
stable-diffusion-webui-gfx803-983167e621aa55431f6dc7e0a26f021a66a33cd0.tar.bz2
stable-diffusion-webui-gfx803-983167e621aa55431f6dc7e0a26f021a66a33cd0.zip
Merge pull request #6448 from aednzxy/patch-2
increase upscale api validation limit
-rw-r--r--modules/api/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/api/models.py b/modules/api/models.py
index d8198a27..5fa63774 100644
--- a/modules/api/models.py
+++ b/modules/api/models.py
@@ -125,7 +125,7 @@ class ExtrasBaseRequest(BaseModel):
gfpgan_visibility: float = Field(default=0, title="GFPGAN Visibility", ge=0, le=1, allow_inf_nan=False, description="Sets the visibility of GFPGAN, values should be between 0 and 1.")
codeformer_visibility: float = Field(default=0, title="CodeFormer Visibility", ge=0, le=1, allow_inf_nan=False, description="Sets the visibility of CodeFormer, values should be between 0 and 1.")
codeformer_weight: float = Field(default=0, title="CodeFormer Weight", ge=0, le=1, allow_inf_nan=False, description="Sets the weight of CodeFormer, values should be between 0 and 1.")
- upscaling_resize: float = Field(default=2, title="Upscaling Factor", ge=1, le=4, description="By how much to upscale the image, only used when resize_mode=0.")
+ upscaling_resize: float = Field(default=2, title="Upscaling Factor", ge=1, le=8, description="By how much to upscale the image, only used when resize_mode=0.")
upscaling_resize_w: int = Field(default=512, title="Target Width", ge=1, description="Target width for the upscaler to hit. Only used when resize_mode=1.")
upscaling_resize_h: int = Field(default=512, title="Target Height", ge=1, description="Target height for the upscaler to hit. Only used when resize_mode=1.")
upscaling_crop: bool = Field(default=True, title="Crop to fit", description="Should the upscaler crop the image to fit in the chosen size?")