π About Project
β‘οΈ Getting Started
π Catalog
ModelsΒΆ
Models can be changed by adding a MODELS section to the config. The default model is Seq2Seq.
InformerΒΆ
MODEL:
NAME: "Informer"
# Number of hidden units
NUM_H_FEATS: 512
# Number of encoders
NUM_ENCODERS: 2
# Number of decoders
NUM_DECODERS: 1
# Number of heads of self attention
NUM_HEADS: 8
# Smaller value leads to higher memory efficiency
CONTRACTION_FACTOR: 5
# int(NUM_H_FEATS * FF_EXPANSION_RATE) is channel size of conv block after self attention
EXPANSION_RATE: 4.0
# Decoder input series length (last DECODER_IN_LENGTH values are used)
DECODER_IN_LENGTH: 168
# Dropout rate
DROPOUT_RATE: 0.05
N-BEATSΒΆ
MODEL:
NAME: "NBeats"
# Number of hidden units
NUM_H_FEATS: 512
# Depth of each block (set small value if dataset has high mean and variance)
DEPTH: 4
# Number of blocks
STACK_SIZE: 30
# Block type (option: {"identity", "trend"})
BLOCK_TYPE: "identity"
# Polynomial degree (used only if BLOCK_TYPE == "trend")
DEGREE: 2
SCINetΒΆ
MODEL:
NAME: "SCINet"
# Number of levels
DEPTH: 3
# Kernel size of conv modules
KERNEL_SIZE: 5
# Expansion rate of conv modules
EXPANSION_RATE: 4.0
# Dropout rate
DROPOUT_RATE: 0.5