Update manga-whisperer.py
Browse files- 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
|
9 |
-
"test
|
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 |
|