更新 'train.py'
This commit is contained in:
parent
c4473fedc9
commit
9f94bbd1e4
11
train.py
11
train.py
|
@ -143,10 +143,13 @@ if __name__ == "__main__":
|
||||||
args, unknown = parser.parse_known_args()
|
args, unknown = parser.parse_known_args()
|
||||||
data_dir = '/cache/data'
|
data_dir = '/cache/data'
|
||||||
train_dir = '/cache/output'
|
train_dir = '/cache/output'
|
||||||
if not os.path.exists(data_dir):
|
try:
|
||||||
os.makedirs(data_dir)
|
if not os.path.exists(data_dir):
|
||||||
if not os.path.exists(train_dir):
|
os.makedirs(data_dir)
|
||||||
os.makedirs(train_dir)
|
if not os.path.exists(train_dir):
|
||||||
|
os.makedirs(train_dir)
|
||||||
|
except Exception as e:
|
||||||
|
print("path already exists")
|
||||||
###Initialize and copy data to training image
|
###Initialize and copy data to training image
|
||||||
DownloadFromQizhi(args.data_url, data_dir)
|
DownloadFromQizhi(args.data_url, data_dir)
|
||||||
###The dataset path is used here:data_dir +"/train"
|
###The dataset path is used here:data_dir +"/train"
|
||||||
|
|
Loading…
Reference in New Issue