This commit is contained in:
D-X-Y 2021-05-26 17:15:17 +08:00
parent 299c8a085b
commit a507f8dd94

View File

@ -1,23 +1,28 @@
##################################################### #####################################################
# Copyright (c) Xuanyi Dong [GitHub D-X-Y], 2021.02 # # Copyright (c) Xuanyi Dong [GitHub D-X-Y], 2021.02 #
##################################################### #####################################################
# python exps/trading/organize_results.py # # python exps/trading/organize_results.py --save_dir outputs/qlib-baselines-all
##################################################### #####################################################
import os, re, sys, argparse import os, re, sys, argparse
import numpy as np import numpy as np
from typing import List, Text from typing import List, Text
from collections import defaultdict, OrderedDict from collections import defaultdict, OrderedDict
from pprint import pprint from pprint import pprint
from pathlib import Path
import ruamel.yaml as yaml import ruamel.yaml as yaml
lib_dir = (Path(__file__).parent / ".." / "..").resolve()
print("LIB-DIR: {:}".format(lib_dir))
if str(lib_dir) not in sys.path:
sys.path.insert(0, str(lib_dir))
from xautodl.config_utils import arg_str2bool from xautodl.config_utils import arg_str2bool
from xautodl.utils.qlib_utils import QResult
import qlib import qlib
from qlib.config import REG_CN from qlib.config import REG_CN
from qlib.workflow import R from qlib.workflow import R
from utils.qlib_utils import QResult
def compare_results( def compare_results(
heads, values, names, space=10, separate="& ", verbose=True, sort_key=False heads, values, names, space=10, separate="& ", verbose=True, sort_key=False