提交 392ada22 编写于 作者: J jiangjiajun

update for gui v1.0.1

上级 f001960b
...@@ -99,49 +99,51 @@ def get_pretrain_weights(flag, model_type, backbone, save_dir): ...@@ -99,49 +99,51 @@ def get_pretrain_weights(flag, model_type, backbone, save_dir):
backbone = 'DetResNet50' backbone = 'DetResNet50'
assert backbone in image_pretrain, "There is not ImageNet pretrain weights for {}, you may try COCO.".format( assert backbone in image_pretrain, "There is not ImageNet pretrain weights for {}, you may try COCO.".format(
backbone) backbone)
# url = image_pretrain[backbone] url = image_pretrain[backbone]
# fname = osp.split(url)[-1].split('.')[0] fname = osp.split(url)[-1].split('.')[0]
# paddlex.utils.download_and_decompress(url, path=new_save_dir) paddlex.utils.download_and_decompress(url, path=new_save_dir)
# return osp.join(new_save_dir, fname) return osp.join(new_save_dir, fname)
try: # try:
hub.download(backbone, save_path=new_save_dir) # hub.download(backbone, save_path=new_save_dir)
except Exception as e: # except Exception as e:
if isinstance(e, hub.ResourceNotFoundError): # if isinstance(e, hub.ResourceNotFoundError):
raise Exception("Resource for backbone {} not found".format( # raise Exception("Resource for backbone {} not found".format(
backbone)) # backbone))
elif isinstance(e, hub.ServerConnectionError): # elif isinstance(e, hub.ServerConnectionError):
raise Exception( # raise Exception(
"Cannot get reource for backbone {}, please check your internet connecgtion" # "Cannot get reource for backbone {}, please check your internet connecgtion"
.format(backbone)) # .format(backbone))
else: # else:
raise Exception( # raise Exception(
"Unexpected error, please make sure paddlehub >= 1.6.2") # "Unexpected error, please make sure paddlehub >= 1.6.2")
return osp.join(new_save_dir, backbone) # return osp.join(new_save_dir, backbone)
elif flag == 'COCO': elif flag == 'COCO':
new_save_dir = save_dir new_save_dir = save_dir
if hasattr(paddlex, 'pretrain_dir'): if hasattr(paddlex, 'pretrain_dir'):
new_save_dir = paddlex.pretrain_dir new_save_dir = paddlex.pretrain_dir
url = coco_pretrain[backbone]
fname = osp.split(url)[-1].split('.')[0]
# paddlex.utils.download_and_decompress(url, path=new_save_dir)
# return osp.join(new_save_dir, fname)
assert backbone in coco_pretrain, "There is not COCO pretrain weights for {}, you may try ImageNet.".format( assert backbone in coco_pretrain, "There is not COCO pretrain weights for {}, you may try ImageNet.".format(
backbone) backbone)
try:
hub.download(backbone, save_path=new_save_dir) url = coco_pretrain[backbone]
except Exception as e: fname = osp.split(url)[-1].split('.')[0]
if isinstance(hub.ResourceNotFoundError): paddlex.utils.download_and_decompress(url, path=new_save_dir)
raise Exception("Resource for backbone {} not found".format( return osp.join(new_save_dir, fname)
backbone))
elif isinstance(hub.ServerConnectionError): # try:
raise Exception( # hub.download(backbone, save_path=new_save_dir)
"Cannot get reource for backbone {}, please check your internet connecgtion" # except Exception as e:
.format(backbone)) # if isinstance(hub.ResourceNotFoundError):
else: # raise Exception("Resource for backbone {} not found".format(
raise Exception( # backbone))
"Unexpected error, please make sure paddlehub >= 1.6.2") # elif isinstance(hub.ServerConnectionError):
return osp.join(new_save_dir, backbone) # raise Exception(
# "Cannot get reource for backbone {}, please check your internet connecgtion"
# .format(backbone))
# else:
# raise Exception(
# "Unexpected error, please make sure paddlehub >= 1.6.2")
# return osp.join(new_save_dir, backbone)
else: else:
raise Exception( raise Exception(
"pretrain_weights need to be defined as directory path or `IMAGENET` or 'COCO' (download pretrain weights automatically)." "pretrain_weights need to be defined as directory path or `IMAGENET` or 'COCO' (download pretrain weights automatically)."
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册