Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -63,9 +63,10 @@ def run_dif(prompt,im_path,model_drop,cnt,strength,guidance,infer,im_height,im_w
|
|
63 |
out_box=[]
|
64 |
im_height=int(im_height)
|
65 |
im_width=int(im_width)
|
|
|
66 |
for i,ea in enumerate(im_path.root):
|
67 |
-
for hh in range(im_height/grid_wide):
|
68 |
-
for b in range(im_width/grid_wide):
|
69 |
|
70 |
print(f'root::{im_path.root[i]}')
|
71 |
#print(f'ea:: {ea}')
|
|
|
63 |
out_box=[]
|
64 |
im_height=int(im_height)
|
65 |
im_width=int(im_width)
|
66 |
+
|
67 |
for i,ea in enumerate(im_path.root):
|
68 |
+
for hh in range(int(im_height/grid_wide)):
|
69 |
+
for b in range(int(im_width/grid_wide)):
|
70 |
|
71 |
print(f'root::{im_path.root[i]}')
|
72 |
#print(f'ea:: {ea}')
|