From 2cce6727a1107a707b202af707ca4e159b645552 Mon Sep 17 00:00:00 2001 From: Luis C Date: Wed, 16 Oct 2024 22:31:29 +0000 Subject: [PATCH] Fix 3:2, 5:4, and 16:9 aspect ratios --- predict.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/predict.py b/predict.py index 4b68c0a..69bee9d 100644 --- a/predict.py +++ b/predict.py @@ -50,15 +50,15 @@ ASPECT_RATIOS = { "1:1": (1024, 1024), - "16:9": (1344, 768), + "16:9": (1360, 768), "21:9": (1536, 640), - "3:2": (1216, 832), - "2:3": (832, 1216), - "4:5": (896, 1088), - "5:4": (1088, 896), + "3:2": (1152, 768), + "2:3": (768, 1152), + "4:5": (896, 1120), + "5:4": (1120, 896), "3:4": (896, 1152), "4:3": (1152, 896), - "9:16": (768, 1344), + "9:16": (768, 1360), "9:21": (640, 1536), }