GabrielML commited on
Commit
e17847a
·
1 Parent(s): 1ee1297

fix bug with images

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -19,10 +19,8 @@ from torchvision.transforms.functional import to_pil_image
19
  from tqdm import tqdm
20
  from util import transform
21
 
22
- # print the current working directory
23
- print(os.getcwd())
24
-
25
  IMAGE_PATH = 'src\\examples'
 
26
  RANDOM_IMAGES_TO_SHOW = 20
27
  IMAGES_PER_ROW = 5
28
 
 
19
  from tqdm import tqdm
20
  from util import transform
21
 
 
 
 
22
  IMAGE_PATH = 'src\\examples'
23
+ print(os.listdir(IMAGE_PATH))
24
  RANDOM_IMAGES_TO_SHOW = 20
25
  IMAGES_PER_ROW = 5
26