mirror of https://github.com/YifanXu74/MQ-Det.git
18 lines
401 B
Python
18 lines
401 B
Python
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
import errno
|
|
import os
|
|
from .comm import is_main_process
|
|
|
|
def mkdir(path):
|
|
try:
|
|
os.makedirs(path)
|
|
except OSError as e:
|
|
if e.errno != errno.EEXIST:
|
|
raise
|
|
|
|
|
|
def save_config(cfg, path):
|
|
if is_main_process():
|
|
with open(path, 'w') as f:
|
|
f.write(cfg.dump())
|