File size: 231 Bytes
befd7da |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os.path as osp
import os
class parser(object):
def __init__(self):
self.output = "./output" # output image folder path
self.logs_dir = './logs'
self.device = 'cuda:0'
opt = parser() |