File size: 9,129 Bytes
093b0a5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | """
Bbtest stands for back-back test
This simulates training a model and testing it on some time frame and then training a new model on the timeframe after the previous, etc
Essentially its back testing not just our model, but our learning process several times along with the model each process produces
Example:
* Train k models, start with n months of data
* Model i in [1,k] gets trained on months [0:n+i-1], its validation data is month n+i, its test data is month n+i+1
"""
from collections import defaultdict
import json
from time import sleep
import yaml
import pickle
import os
print("0")
from pprint import pprint
from datetime import datetime
from dateutil.relativedelta import relativedelta
from multiprocessing import current_process
import numpy as np
print("A")
from pytorch_lightning.loggers import TensorBoardLogger
print("B")
from run_once import pt_light_experiment
from utils.ipynb_helpers import read_data, bbtest_setting
from utils.results_analysis import get_tuned_metrics, open_results
from utils.tools import dotdict
from utils.parallel import NoDaemonProcessPool
LOG_BASE_DIR = "bbtest_logs"
# Each element can be passed to the device param during the pytorch lightning trainer initialization
GPU_LIST = list(map(lambda x: [x], range(8)))
def call_experiment(enumerated_args: list[tuple[int, dict, str, int]]):
"""Function to figure out what device to use and train a model based on that"""
run_idx, args, setting, bbtest_id = enumerated_args
args = dotdict(args)
gpu_list_idx = current_process()._identity[0] - 1
logger = TensorBoardLogger(
LOG_BASE_DIR, name=setting, flush_secs=15, version=run_idx
)
log_dir, test_loop_output = pt_light_experiment(
args, devices=GPU_LIST[gpu_list_idx], logger=logger, save_metrics=1
)
assert logger.log_dir == log_dir
return log_dir, dict(args), test_loop_output, bbtest_id
def run_bbtest(
config_file: str,
test_duration: relativedelta,
val_duration: relativedelta,
data_start_date: datetime,
data_end_date: datetime,
test_window_start_date: datetime,
hyper_params_changes: list = [],
):
"""Function to run a back test on the learning algorithm. This is like a normal backtest except that we train a new model based off of `test_duration`."""
# Open base config file
with open(config_file, "r") as file:
args_base = dotdict(yaml.full_load(file))
if len(hyper_params_changes) == 0:
hyper_params_changes = [{}]
inputs = []
full_test_dirs = []
for bbtest_id, hp_override in enumerate(hyper_params_changes):
sleep(5)
args = dotdict(args_base | hp_override)
# Name this bbtest
setting = bbtest_setting(args)
print("Setting:", setting)
full_test_dirs.append(os.path.join(LOG_BASE_DIR, setting))
# Create input list for multi process
bb_inputs = []
date_end = test_window_start_date
done = False
while not done:
# Change args
args.date_start = data_start_date.strftime("%Y-%m-%d")
args.date_test = date_end.strftime("%Y-%m-%d")
args.date_val = (date_end - val_duration).strftime("%Y-%m-%d")
date_end = date_end + test_duration
args.date_end = date_end.strftime("%Y-%m-%d")
if date_end > data_end_date:
done = True
else:
bb_inputs.append(dict(args))
# NOTE: the [-8:] should technically not be used here for a true bbtest
# However, just having 1 batch of runs is way faster
bb_inputs = [
(idx, args, setting, bbtest_id) for idx, args in enumerate(bb_inputs)
][-len(GPU_LIST) :]
inputs.extend(bb_inputs)
# We don't support multiple data sets atm
df = read_data(os.path.join(args.root_path, args.data_path))
with NoDaemonProcessPool(processes=len(GPU_LIST)) as pool:
outputs = pool.map_async(call_experiment, inputs)
# Open, Process, and Aggregate Test Data
bb_tpd_dict = defaultdict(
lambda: {
"train": {"trues": [], "preds": [], "dates": []},
"val": {"trues": [], "preds": [], "dates": []},
"test": {"trues": [], "preds": [], "dates": []},
}
)
test_loop_outputs = []
for log_dir, args, test_loop_output, bb_test_id in outputs.get():
args = dotdict(args)
test_loop_outputs.append(test_loop_output)
for data_group in ["train", "val", "test"]:
tpd_dict = open_results(log_dir, args, df)
true = tpd_dict[data_group]["trues"]
pred = tpd_dict[data_group]["preds"]
date = tpd_dict[data_group]["dates"]
bb_tpd_dict[bb_test_id][data_group]["trues"].append(true)
bb_tpd_dict[bb_test_id][data_group]["preds"].append(pred)
bb_tpd_dict[bb_test_id][data_group]["dates"].append(date)
# Aggregate and cast
for bb_test_id in bb_tpd_dict.keys():
for data_group in ["train", "val", "test"]:
bb_tpd_dict[bb_test_id][data_group]["trues"] = np.concatenate(
bb_tpd_dict[bb_test_id][data_group]["trues"]
)
bb_tpd_dict[bb_test_id][data_group]["preds"] = np.concatenate(
bb_tpd_dict[bb_test_id][data_group]["preds"]
)
bb_tpd_dict[bb_test_id][data_group]["dates"] = bb_tpd_dict[bb_test_id][
data_group
]["dates"][0].union_many(bb_tpd_dict[bb_test_id][data_group]["dates"][1:])
with open(
os.path.join(full_test_dirs[bb_test_id], "tpd_dict.pickle"), "wb"
) as handle:
pickle.dump(
bb_tpd_dict[bb_test_id], handle, protocol=pickle.HIGHEST_PROTOCOL
)
#### Analyze
for bb_test_id in bb_tpd_dict.keys():
best_thresh, best_thresh_metrics, zero_thresh_metrics = get_tuned_metrics(
args, bb_tpd_dict[bb_test_id]
)
metrics = {0.0: zero_thresh_metrics, best_thresh: best_thresh_metrics}
with open(os.path.join(full_test_dirs[bb_test_id], "metrics.json"), "w") as f:
json.dump(metrics, f, indent=2)
# Warnings
action_diff = np.abs(
metrics[0.0]["test"]["pct_excluded_nshort"]
- metrics[0.0]["test"]["pct_excluded_oshort"]
)
if action_diff > 0.6:
print("WARNING: significant action preference between buying shorting")
train_pct_dir_correct = metrics[0.0]["train"]["pct_dir_correct"]
if train_pct_dir_correct < 0.55:
print(
f"WARNING: train isn't properly learning direction. pct_dir_correct: {train_pct_dir_correct}"
)
print("bbtest logged in:", full_test_dirs[bb_test_id])
return None
if __name__ == "__main__":
config_file = "configs/lstm/basic_PEMSBAY.yaml"
# The duration of the test set, also the duration we slide with
# test_duration = relativedelta(months=1)
test_duration = relativedelta(months=1)
# The duration of the val set
# val_duration = relativedelta(weeks=6) # months=6)
val_duration = relativedelta(months=6)
# OG NO COVID, oil
# # Dataset bounds
# data_start_date = datetime.strptime("2012-01-01", "%Y-%m-%d")
# data_end_date = datetime.strptime("2020-01-01", "%Y-%m-%d")
# # The date we should start the first testing window on
# test_window_start_date = datetime.strptime("2016-01-01", "%Y-%m-%d")
# Messing around, oil
# test_duration = relativedelta(months=2)
# val_duration = relativedelta(months=1)
# data_start_date = datetime.strptime("2012-01-01", "%Y-%m-%d")
# data_end_date = datetime.strptime("2022-11-10", "%Y-%m-%d")
# test_window_start_date = datetime.strptime("2021-01-01", "%Y-%m-%d")
# WTH
# test_duration = relativedelta(months=1)
# val_duration = relativedelta(months=6)
# data_start_date = datetime.strptime("2010-01-01", "%Y-%m-%d")
# data_end_date = datetime.strptime("2013-12-01", "%Y-%m-%d")
# test_window_start_date = datetime.strptime("2013-05-01", "%Y-%m-%d")
# PEMSBAY
test_duration = relativedelta(weeks=1)
val_duration = relativedelta(weeks=6)
data_start_date = datetime.strptime("2017-01-01", "%Y-%m-%d")
data_end_date = datetime.strptime("2017-06-29", "%Y-%m-%d")
test_window_start_date = datetime.strptime("2017-04-14", "%Y-%m-%d")
hyper_params_changes = [
# {"e_layers": 1},
# {"learning_rate": 5.0e-5},
# {"dropout": 0.5},
# {"d_model": 512},
# {"d_ff": 512},
{},
{"lradj": "type2"},
{"no_scale_mean": False},
{"max_epochs": 65, "pre_loss": "stock_tanhv4", "pre_epochs": 15},
{"max_epochs": 80},
{"seq_len": 32},
]
run_bbtest(
config_file,
test_duration,
val_duration,
data_start_date,
data_end_date,
test_window_start_date,
hyper_params_changes,
)
|