informer_model/configs/experiments/informer-btcusdt-5m-gmadl.yaml
2024-10-16 20:40:40 +02:00

52 lines
929 B
YAML

future_window:
value: 2
past_window:
value: 28
batch_size:
value: 256
max_epochs:
value: 40
data:
value:
dataset: "btc-usdt-5m:latest"
sliding_window: 0
validation: 0.2
fields:
value:
time_index: "time_index"
target: "returns"
group_ids: ["group_id"]
dynamic_unknown_real:
- "high_price"
- "low_price"
- "open_price"
- "close_price"
- "volume"
- "returns"
dynamic_unknown_cat: []
dynamic_known_real:
- "effective_rates"
- "vix_close_price"
- "fear_greed_index"
dynamic_known_cat:
- "hour"
- "weekday"
static_real: []
static_cat: []
loss:
value:
name: "GMADL"
a: 1000
b: 2
model:
value:
name: "Informer"
d_model: 256
d_fully_connected: 256
n_attention_heads: 2
dropout: 0.01
n_encoder_layers: 1
n_decoder_layers: 3
learning_rate: 0.0001
optimizer: "Adam"