1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-06-06 05:51:17 +08:00

Merge pull request #1475 from qianyun210603/bugfix

[BUGFIX] potential file// url parsing error
This commit is contained in:
Fivele-Li
2023-03-24 11:22:57 +08:00
committed by GitHub

View File

@@ -426,7 +426,8 @@ def init_instance_by_config(
# path like 'file:///<path to pickle file>/obj.pkl'
pr = urlparse(config)
if pr.scheme == "file":
with open(os.path.join(pr.netloc, pr.path), "rb") as f:
pr_path = os.path.join(pr.netloc, pr.path) if bool(pr.path) else pr.netloc
with open(pr_path, "rb") as f:
return pickle.load(f)
else:
with config.open("rb") as f: