Spaces:
Sleeping
Sleeping
File size: 240 Bytes
eaf2e33 |
1 2 3 4 5 6 7 8 9 10 11 |
from src.utils.filesys import *
def load_cfgs(path, *keys):
return load_dict_json(getpath(path, 'cfgs.json'), *keys)
def load_performance(path, *keys):
return load_singlerow_csv(getpath(path, 'performance.csv'), *keys)
pass
|