MattyMroz commited on
Commit
17927cc
1 Parent(s): 8d12d79

Update manga-whisperer.py

Browse files
Files changed (1) hide show
  1. manga-whisperer.py +3 -2
manga-whisperer.py CHANGED
@@ -4,9 +4,10 @@ from PIL import Image
4
  import torch
5
  import os
6
 
 
7
  images = [
8
- "test/1.png",
9
- "test/2.png",
10
  ]
11
 
12
 
 
4
  import torch
5
  import os
6
 
7
+ current_dir = os.getcwd()
8
  images = [
9
+ os.path.join(current_dir, "test", "1.png"),
10
+ os.path.join(current_dir, "test", "2.png"),
11
  ]
12
 
13