Spaces:
Running
Running
File size: 239 Bytes
896437a |
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_folder = "./outputs" # output image folder path
self.logs_dir = './logs'
self.device = 'cuda:0'
opt = parser() |