Spaces:
Running
on
Zero
Running
on
Zero
parokshsaxena
commited on
Commit
β’
fa463a7
1
Parent(s):
5b49f28
doubling size of previous IDM
Browse files
app.py
CHANGED
@@ -121,8 +121,10 @@ pipe = TryonPipeline.from_pretrained(
|
|
121 |
)
|
122 |
pipe.unet_encoder = UNet_Encoder
|
123 |
|
124 |
-
WIDTH = int(4160/4) # 768
|
125 |
-
HEIGHT = int(6240/4) # 1024
|
|
|
|
|
126 |
POSE_WIDTH = int(WIDTH/2) # int(WIDTH/2)
|
127 |
POSE_HEIGHT = int(HEIGHT/2) #int(HEIGHT/2)
|
128 |
|
|
|
121 |
)
|
122 |
pipe.unet_encoder = UNet_Encoder
|
123 |
|
124 |
+
#WIDTH = int(4160/4) # 768
|
125 |
+
#HEIGHT = int(6240/4) # 1024
|
126 |
+
WIDTH = int(768*2)
|
127 |
+
HEIGHT = int(1024*2)
|
128 |
POSE_WIDTH = int(WIDTH/2) # int(WIDTH/2)
|
129 |
POSE_HEIGHT = int(HEIGHT/2) #int(HEIGHT/2)
|
130 |
|