1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-09 14:00:55 +08:00

Update test scipts

This commit is contained in:
Jactus
2020-11-22 13:38:40 +08:00
parent f11c3ab483
commit 8958656222
3 changed files with 19 additions and 35 deletions

View File

@@ -24,31 +24,6 @@ class RecordTemp:
This is the Records Template class that enables user to generate experiment results such as IC and
backtest in a certain format.
"""
artifact_path = None
@classmethod
def get_path(cls, path=None):
names = []
if cls.artifact_path is not None:
names.append(cls.artifact_path)
if path is not None:
names.append(path)
return "/".join(names)
artifact_path = None
@classmethod
def get_path(cls, path=None):
names = []
if cls.artifact_path is not None:
names.append(cls.artifact_path)
if path is not None:
names.append(path)
return "/".join(names)
artifact_path = None