Spaces:
Sleeping
Sleeping
jjw
commited on
Commit
·
89dfa11
1
Parent(s):
6842e3e
change labels.txt path
Browse files
app.py
CHANGED
|
@@ -22,7 +22,7 @@ def ade_palette():
|
|
| 22 |
]
|
| 23 |
|
| 24 |
labels_list = []
|
| 25 |
-
with open("
|
| 26 |
for line in fp:
|
| 27 |
labels_list.append(line.rstrip("\n"))
|
| 28 |
|
|
|
|
| 22 |
]
|
| 23 |
|
| 24 |
labels_list = []
|
| 25 |
+
with open("./labels.txt", "r", encoding="utf-8") as fp:
|
| 26 |
for line in fp:
|
| 27 |
labels_list.append(line.rstrip("\n"))
|
| 28 |
|