Files
TSlib/scripts/long_term_forecast/Traffic_script/Mamba.sh
2025-08-28 10:17:59 +00:00

29 lines
524 B
Bash

model_name=Mamba
for pred_len in 96 192 336 720
do
python -u run.py \
--task_name long_term_forecast \
--is_training 1 \
--root_path ./dataset/traffic/ \
--data_path traffic.csv \
--model_id traffic_$pred_len'_'$pred_len \
--model $model_name \
--data custom \
--features M \
--seq_len $pred_len \
--label_len 48 \
--pred_len $pred_len \
--e_layers 2 \
--d_layers 1 \
--enc_in 862 \
--expand 2 \
--d_ff 16 \
--d_conv 4 \
--c_out 862 \
--d_model 128 \
--des 'Exp' \
--itr 1 \
done