Files
drift/sweep_ensemble.yaml
T
Mark Aron Szulyovszky 54ea59c0cf feat(Sweep): try to filter out some not great models (#144)
* feat(Sweep): try to filter out some not great models

* fix(Sweep): yaml

* fix(Sweep): yaml

* fix(Config): remove some models that do not perform well
2022-01-11 10:33:18 +01:00

61 lines
1.6 KiB
YAML

program: run_sweep.py
method: grid
project: price-forecasting
name: Meta labelling
metric:
goal: maximize
name: sharpe
parameters:
primary_models_meta_labeling:
value: True
assets:
value: ['daily_crypto']
other_assets:
value: ['daily_etf']
exogenous_data:
value: ['daily_glassnode']
expanding_window_primary:
value: True
expanding_window_meta_labeling:
value: True
sliding_window_size_primary:
value: 380
sliding_window_size_meta_labeling:
values: [250, 300, 380]
distribution: categorical
n_features_to_select:
values: [40, 50, 60]
distribution: categorical
dimensionality_reduction:
value: True
retrain_every:
value: 20
scaler:
value: 'minmax'
method:
value: 'classification'
no_of_classes:
value: 'two'
forecasting_horizon:
value: 1
load_non_target_asset:
value: True
log_returns:
value: True
index_column:
value: 'int'
primary_models:
distribution: categorical
values:
- ["LDA", "LR_two_class", "KNN", "SVC", "CART", "NB", "AB", "RF", "XGB_two_class", "LGBM", "StaticMom"]
- ["LR_two_class", "LDA", "NB", "RF", "XGB_two_class", "LGBM", "StaticMom"]
- ["LR_two_class", "LDA", "LGBM", "RF", "XGB_two_class"]
meta_labeling_models:
value: ["LGBM", "LR_two_class"]
own_features:
value: ['date_days', 'level_2', 'lags_up_to_5']
other_features:
value: ['level_2', 'lags_up_to_5']
exogenous_features:
value: ['z_score']