jjw commited on
Commit
89dfa11
·
1 Parent(s): 6842e3e

change labels.txt path

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ def ade_palette():
22
  ]
23
 
24
  labels_list = []
25
- with open("../Segmentation/labels.txt", "r", encoding="utf-8") as fp:
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