|
class Path(object):
|
|
@staticmethod
|
|
def db_root_dir(dataset):
|
|
if dataset == 'thy_roof':
|
|
return '/home/qiqq/q3dl/datalinan/taihuyuan_roof/' # folder that contains VOCdevkit/.
|
|
else:
|
|
print('Dataset {} not available.'.format(dataset))
|
|
raise NotImplementedError
|
|
|