someone-in-the-world Claude Sonnet 4.6 commited on
Commit
12e69c6
·
1 Parent(s): 238c6e8

Bump MAX_OUTPUT_DIM from 1280 to 2048

Browse files

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ from PIL import Image
15
 
16
  MAX_SEED = np.iinfo(np.int32).max
17
  LANCZOS = getattr(Image, "Resampling", Image).LANCZOS
18
- MAX_OUTPUT_DIM = 1280
19
 
20
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
21
 
 
15
 
16
  MAX_SEED = np.iinfo(np.int32).max
17
  LANCZOS = getattr(Image, "Resampling", Image).LANCZOS
18
+ MAX_OUTPUT_DIM = 2048
19
 
20
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
21