1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-06 12:30:57 +08:00

Merge branch 'main' of https://github.com/you-n-g/qlib into main

This commit is contained in:
Jactus
2020-11-22 12:48:28 +08:00
2 changed files with 14 additions and 1 deletions

View File

@@ -56,4 +56,4 @@ jobs:
- name: Test workflow by config
run: |
workflow_by_config examples/benchmarks/GBDT/workflow_config_gbdt.yaml
qrun examples/benchmarks/GBDT/workflow_config_gbdt.yaml

View File

@@ -39,6 +39,19 @@ class RecordTemp:
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 = []