标签:not instance path pytho 好的 深度 sts pat detection
这样模型不占地,还能便于后续脚本加载最好模型
def symlink(src, dst, overwrite=True, **kwargs):
if os.path.lexists(dst) and overwrite:
os.remove(dst)
os.symlink(src, dst, **kwargs)
def symlink(src_path: Path, dst_path: Path):
if not isinstance(src_path, Path):
src_path = Path(src_path)
if not isinstance(dst_path, Path):
dst_path = Path(dst_path)
if dst_path.is_symlink():
dst_path.unlink()
dst_path.symlink_to(src_path)
标签:not instance path pytho 好的 深度 sts pat detection
原文地址:https://www.cnblogs.com/shiwanghualuo/p/11846986.html