44158-Docker / utils /helper.py
Muhammad Naufal Rizqullah
first commit
d022305
raw
history blame contribute delete
244 Bytes
from pathlib import Path
def load_class_names():
file = "class_names.txt"
path_file = Path("./src/data") / file
with open(path_file,"r") as f:
class_names = [item.strip() for item in f.readlines()]
return class_names