Spaces:
Running on Zero
Running on Zero
Commit ·
12e69c6
1
Parent(s): 238c6e8
Bump MAX_OUTPUT_DIM from 1280 to 2048
Browse filesCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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 =
|
| 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 |
|