-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathelectricity.sh
66 lines (61 loc) · 1.87 KB
/
electricity.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# add --individual for DLinear-I
if [ ! -d "./logs" ]; then
mkdir ./logs
fi
if [ ! -d "./logs/LongForecasting" ]; then
mkdir ./logs/LongForecasting
fi
seq_len=96
model_name=Linear
python -u run_longExp.py \
--is_training 1 \
--root_path ./dataset/electricity/ \
--data_path electricity.csv \
--model_id Electricity_$seq_len'_'96 \
--model $model_name \
--data custom \
--features M \
--seq_len $seq_len \
--pred_len 96 \
--enc_in 321 \
--des 'Exp' \
--itr 1 --batch_size 16 --learning_rate 0.001 >logs/LongForecasting/$model_name'_'electricity_$seq_len'_'96.log
# python -u run_longExp.py \
# --is_training 1 \
# --root_path ./dataset/electricity/ \
# --data_path electricity.csv \
# --model_id Electricity_$seq_len'_'192 \
# --model $model_name \
# --data custom \
# --features M \
# --seq_len $seq_len \
# --pred_len 192 \
# --enc_in 321 \
# --des 'Exp' \
# --itr 1 --batch_size 16 --learning_rate 0.001 >logs/LongForecasting/$model_name'_'electricity_$seq_len'_'192.log
# python -u run_longExp.py \
# --is_training 1 \
# --root_path ./dataset/electricity/ \
# --data_path electricity.csv \
# --model_id Electricity_$seq_len'_'336 \
# --model $model_name \
# --data custom \
# --features M \
# --seq_len $seq_len \
# --pred_len 336 \
# --enc_in 321 \
# --des 'Exp' \
# --itr 1 --batch_size 16 --learning_rate 0.001 >logs/LongForecasting/$model_name'_'electricity_$seq_len'_'336.log
# python -u run_longExp.py \
# --is_training 1 \
# --root_path ./dataset/electricity/ \
# --data_path electricity.csv \
# --model_id Electricity_$seq_len'_'720 \
# --model $model_name \
# --data custom \
# --features M \
# --seq_len $seq_len \
# --pred_len 720 \
# --enc_in 321 \
# --des 'Exp' \
# --itr 1 --batch_size 16 --learning_rate 0.001 >logs/LongForecasting/$model_name'_'electricity_$seq_len'_'720.log