first commit

This commit is contained in:
gameloader
2025-08-28 10:17:59 +00:00
commit d6dd462886
350 changed files with 39789 additions and 0 deletions

View File

@ -0,0 +1,26 @@
export CUDA_VISIBLE_DEVICES=2
model_name=SegRNN
seq_len=96
for pred_len in 96 192 336 720
do
python -u run.py \
--task_name long_term_forecast \
--is_training 1 \
--root_path ./dataset/ETT-small/ \
--data_path ETTm1.csv \
--model_id ETTm1_$seq_len'_'$pred_len \
--model $model_name \
--data ETTm1 \
--features M \
--seq_len $seq_len \
--pred_len $pred_len \
--seg_len 48 \
--enc_in 7 \
--d_model 512 \
--dropout 0.5 \
--learning_rate 0.0001 \
--des 'Exp' \
--itr 1
done