wizzseen's picture
Upload 948 files
8a6df40 verified
raw
history blame contribute delete
288 Bytes
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