Omnibus commited on
Commit
52874c5
·
verified ·
1 Parent(s): 4757914

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
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}')