收到垃圾堆

This commit is contained in:
czzhangheng 2025-04-22 14:54:39 +08:00
parent e851eb21d6
commit eb8684bf91
211 changed files with 2989 additions and 2 deletions

0
.gitignore vendored Normal file → Executable file
View File

0
LICENSE Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
Result.xlsx Normal file → Executable file
View File

0
baseline.ipynb Normal file → Executable file
View File

0
baseline1.ipynb Normal file → Executable file
View File

0
config/AGCRN/PEMSD3.yaml Normal file → Executable file
View File

0
config/AGCRN/PEMSD4.yaml Normal file → Executable file
View File

0
config/AGCRN/PEMSD7.yaml Normal file → Executable file
View File

0
config/AGCRN/PEMSD8.yaml Normal file → Executable file
View File

0
config/ARIMA/Hainan.yaml Normal file → Executable file
View File

0
config/ARIMA/PEMSD3.yaml Normal file → Executable file
View File

0
config/ARIMA/PEMSD4.yaml Normal file → Executable file
View File

0
config/ARIMA/PEMSD7(L).yaml Normal file → Executable file
View File

0
config/ARIMA/PEMSD7(M).yaml Normal file → Executable file
View File

0
config/ARIMA/PEMSD7.yaml Normal file → Executable file
View File

0
config/ARIMA/PEMSD8.yaml Normal file → Executable file
View File

0
config/DCRNN/PEMSD3.yaml Normal file → Executable file
View File

0
config/DCRNN/PEMSD4.yaml Normal file → Executable file
View File

0
config/DCRNN/PEMSD7.yaml Normal file → Executable file
View File

0
config/DCRNN/PEMSD8.yaml Normal file → Executable file
View File

0
config/DDGCRN/Hainan.yaml Normal file → Executable file
View File

0
config/DDGCRN/PEMSD3.yaml Normal file → Executable file
View File

0
config/DDGCRN/PEMSD4.yaml Normal file → Executable file
View File

0
config/DDGCRN/PEMSD7(L).yaml Normal file → Executable file
View File

0
config/DDGCRN/PEMSD7(M).yaml Normal file → Executable file
View File

0
config/DDGCRN/PEMSD7.yaml Normal file → Executable file
View File

0
config/DDGCRN/PEMSD8.yaml Normal file → Executable file
View File

0
config/DSANET/PEMSD3.yaml Normal file → Executable file
View File

0
config/DSANET/PEMSD4.yaml Normal file → Executable file
View File

0
config/DSANET/PEMSD7.yaml Normal file → Executable file
View File

0
config/DSANET/PEMSD8.yaml Normal file → Executable file
View File

0
config/EXP/PEMSD3.yaml Normal file → Executable file
View File

0
config/EXP/PEMSD4.yaml Normal file → Executable file
View File

0
config/EXP/PEMSD7.yaml Normal file → Executable file
View File

0
config/EXP/PEMSD8.yaml Normal file → Executable file
View File

0
config/EXP/SD.yaml Normal file → Executable file
View File

0
config/EXPB/PEMSD4.yaml Normal file → Executable file
View File

0
config/GWN/PEMSD3.yaml Normal file → Executable file
View File

0
config/GWN/PEMSD4.yaml Normal file → Executable file
View File

0
config/GWN/PEMSD7.yaml Normal file → Executable file
View File

0
config/GWN/PEMSD8.yaml Normal file → Executable file
View File

0
config/NLT/PEMSD3.yaml Normal file → Executable file
View File

0
config/NLT/PEMSD4.yaml Normal file → Executable file
View File

0
config/NLT/PEMSD7.yaml Normal file → Executable file
View File

0
config/NLT/PEMSD8.yaml Normal file → Executable file
View File

0
config/PDG2SEQ/PEMSD3.yaml Normal file → Executable file
View File

0
config/PDG2SEQ/PEMSD4.yaml Normal file → Executable file
View File

0
config/PDG2SEQ/PEMSD7.yaml Normal file → Executable file
View File

0
config/PDG2SEQ/PEMSD8.yaml Normal file → Executable file
View File

56
config/STAEFormer/PEMSD3.yaml Executable file
View File

@ -0,0 +1,56 @@
data:
num_nodes: 358
lag: 12
horizon: 12
val_ratio: 0.2
test_ratio: 0.2
tod: False
normalizer: std
column_wise: False
default_graph: True
add_time_in_day: True
add_day_in_week: True
steps_per_day: 288
days_per_week: 7
model:
num_nodes: 358
in_steps: 12
out_steps: 12
steps_per_day: 288
input_dim: 1
output_dim: 1
input_embedding_dim: 24
tod_embedding_dim: 24
dow_embedding_dim: 24
spatial_embedding_dim: 0
adaptive_embedding_dim: 80
feed_forward_dim: 256
num_heads: 4
num_layers: 3
dropout: 0.1
use_mixed_proj: true
train:
loss_func: mae
seed: 10
batch_size: 64
epochs: 300
lr_init: 0.003
weight_decay: 0
lr_decay: False
lr_decay_rate: 0.3
lr_decay_step: "5,20,40,70"
early_stop: True
early_stop_patience: 15
grad_norm: False
max_grad_norm: 5
real_value: True
test:
mae_thresh: null
mape_thresh: 0.0
log:
log_step: 200
plot: False

55
config/STAEFormer/PEMSD4.yaml Executable file
View File

@ -0,0 +1,55 @@
data:
num_nodes: 307
lag: 12
horizon: 12
val_ratio: 0.1
test_ratio: 0.2
tod: False
normalizer: std
column_wise: False
default_graph: True
add_time_in_day: True
add_day_in_week: True
steps_per_day: 288
days_per_week: 7
model:
num_nodes: 307
in_steps: 12
out_steps: 12
steps_per_day: 288
input_dim: 1
output_dim: 1
input_embedding_dim: 24
tod_embedding_dim: 24
dow_embedding_dim: 24
spatial_embedding_dim: 0
adaptive_embedding_dim: 80
feed_forward_dim: 256
num_heads: 4
num_layers: 3
dropout: 0.1
use_mixed_proj: true
train:
loss_func: Huber
seed: 10
batch_size: 16
epochs: 200
lr_init: 0.001
weight_decay: 0.0003
lr_decay: True
lr_decay_rate: 0.1
lr_decay_step: "5,20,40,70"
early_stop: True
early_stop_patience: 30
grad_norm: False
real_value: True
test:
mae_thresh: null
mape_thresh: 0.0
log:
log_step: 2000
plot: False

56
config/STAEFormer/PEMSD7.yaml Executable file
View File

@ -0,0 +1,56 @@
data:
num_nodes: 883
lag: 12
horizon: 12
val_ratio: 0.2
test_ratio: 0.2
tod: False
normalizer: std
column_wise: False
default_graph: True
add_time_in_day: True
add_day_in_week: True
steps_per_day: 288
days_per_week: 7
model:
num_nodes: 883
in_steps: 12
out_steps: 12
steps_per_day: 288
input_dim: 1
output_dim: 1
input_embedding_dim: 24
tod_embedding_dim: 24
dow_embedding_dim: 24
spatial_embedding_dim: 0
adaptive_embedding_dim: 80
feed_forward_dim: 256
num_heads: 4
num_layers: 3
dropout: 0.1
use_mixed_proj: true
train:
loss_func: mae
seed: 10
batch_size: 64
epochs: 300
lr_init: 0.003
weight_decay: 0
lr_decay: False
lr_decay_rate: 0.3
lr_decay_step: "5,20,40,70"
early_stop: True
early_stop_patience: 15
grad_norm: False
max_grad_norm: 5
real_value: True
test:
mae_thresh: null
mape_thresh: 0.0
log:
log_step: 200
plot: False

56
config/STAEFormer/PEMSD8.yaml Executable file
View File

@ -0,0 +1,56 @@
data:
num_nodes: 170
lag: 12
horizon: 12
val_ratio: 0.2
test_ratio: 0.2
tod: False
normalizer: std
column_wise: False
default_graph: True
add_time_in_day: True
add_day_in_week: True
steps_per_day: 288
days_per_week: 7
model:
num_nodes: 170
in_steps: 12
out_steps: 12
steps_per_day: 288
input_dim: 1
output_dim: 1
input_embedding_dim: 24
tod_embedding_dim: 24
dow_embedding_dim: 24
spatial_embedding_dim: 0
adaptive_embedding_dim: 80
feed_forward_dim: 256
num_heads: 4
num_layers: 3
dropout: 0.1
use_mixed_proj: true
train:
loss_func: mae
seed: 10
batch_size: 64
epochs: 300
lr_init: 0.003
weight_decay: 0
lr_decay: False
lr_decay_rate: 0.3
lr_decay_step: "5,20,40,70"
early_stop: True
early_stop_patience: 15
grad_norm: False
max_grad_norm: 5
real_value: True
test:
mae_thresh: null
mape_thresh: 0.0
log:
log_step: 200
plot: False

0
config/STFGNN/PEMSD3.yaml Normal file → Executable file
View File

0
config/STFGNN/PEMSD4.yaml Normal file → Executable file
View File

0
config/STFGNN/PEMSD7.yaml Normal file → Executable file
View File

0
config/STFGNN/PEMSD8.yaml Normal file → Executable file
View File

0
config/STGCN/PEMSD3.yaml Normal file → Executable file
View File

0
config/STGCN/PEMSD4.yaml Normal file → Executable file
View File

0
config/STGCN/PEMSD7.yaml Normal file → Executable file
View File

0
config/STGCN/PEMSD8.yaml Normal file → Executable file
View File

0
config/STGNCDE/PEMSD3.yaml Normal file → Executable file
View File

0
config/STGNCDE/PEMSD4.yaml Normal file → Executable file
View File

0
config/STGNCDE/PEMSD7.yaml Normal file → Executable file
View File

0
config/STGNCDE/PEMSD8.yaml Normal file → Executable file
View File

0
config/STGODE/PEMSD3.yaml Normal file → Executable file
View File

0
config/STGODE/PEMSD4.yaml Normal file → Executable file
View File

0
config/STGODE/PEMSD7.yaml Normal file → Executable file
View File

0
config/STGODE/PEMSD8.yaml Normal file → Executable file
View File

0
config/STID/PEMSD4.yaml Normal file → Executable file
View File

0
config/STSGCN/PEMSD3.yaml Normal file → Executable file
View File

0
config/STSGCN/PEMSD4.yaml Normal file → Executable file
View File

0
config/STSGCN/PEMSD7.yaml Normal file → Executable file
View File

0
config/STSGCN/PEMSD8.yaml Normal file → Executable file
View File

0
config/TCN/PEMSD3.yaml Normal file → Executable file
View File

0
config/TCN/PEMSD4.yaml Normal file → Executable file
View File

0
config/TCN/PEMSD7.yaml Normal file → Executable file
View File

0
config/TCN/PEMSD8.yaml Normal file → Executable file
View File

0
config/TWDGCN/Hainan.yaml Normal file → Executable file
View File

0
config/TWDGCN/PEMSD3.yaml Normal file → Executable file
View File

0
config/TWDGCN/PEMSD4.yaml Normal file → Executable file
View File

0
config/TWDGCN/PEMSD7(L).yaml Normal file → Executable file
View File

0
config/TWDGCN/PEMSD7(M).yaml Normal file → Executable file
View File

0
config/TWDGCN/PEMSD7.yaml Normal file → Executable file
View File

0
config/TWDGCN/PEMSD8.yaml Normal file → Executable file
View File

0
config/args_parser.py Normal file → Executable file
View File

0
dataloader/DCRNNdataloader.py Normal file → Executable file
View File

0
dataloader/PeMSDdataloader.py Normal file → Executable file
View File

0
dataloader/PeMSDdataloader_old.py Normal file → Executable file
View File

0
dataloader/cde_loader/__init__.py Normal file → Executable file
View File

0
dataloader/cde_loader/add_window.py Normal file → Executable file
View File

0
dataloader/cde_loader/cdeDataloader.py Normal file → Executable file
View File

0
dataloader/cde_loader/load_dataset.py Normal file → Executable file
View File

0
dataloader/loader_selector.py Normal file → Executable file
View File

0
lib/Download_data.py Normal file → Executable file
View File

0
lib/LargeST.py Normal file → Executable file
View File

0
lib/Trainer_old.py Normal file → Executable file
View File

0
lib/initializer.py Normal file → Executable file
View File

0
lib/logger.py Normal file → Executable file
View File

Some files were not shown because too many files have changed in this diff Show More