Spaces:
Running
Running
File size: 288 Bytes
8a6df40 |
1 2 3 4 5 6 7 8 9 |
class Path(object):
@staticmethod
def db_root_dir(database):
if database == 'atr':
return './data/datasets/ATR/' # folder that contains atr/.
else:
print('Database {} not available.'.format(database))
raise NotImplementedError
|