cloth-segmentation / options.py
wildoctopus's picture
Upload 5 files
896437a
raw
history blame
239 Bytes
import os.path as osp
import os
class parser(object):
def __init__(self):
self.output_folder = "./outputs" # output image folder path
self.logs_dir = './logs'
self.device = 'cuda:0'
opt = parser()