-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsM3_tM4.sh
165 lines (159 loc) · 3.53 KB
/
sM3_tM4.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
model_name=AutoTimes_Llama
python -u run.py \
--task_name zero_shot_forecast \
--is_training 1 \
--root_path ./dataset/tsf \
--data_path m3_yearly_dataset.tsf \
--test_data_path m4_yearly_dataset.tsf \
--seasonal_patterns 'Yearly' \
--model_id m3_Yearly \
--model $model_name \
--data tsf \
--seq_len 6 \
--label_len 0 \
--token_len 6 \
--test_seq_len 6 \
--test_label_len 0 \
--test_pred_len 6 \
--learning_rate 0.0001 \
--mlp_hidden_dim 256 \
--mlp_hidden_layers 3 \
--batch_size 16 \
--des 'Exp' \
--itr 1 \
--loss 'SMAPE' \
--use_amp \
--cosine \
--tmax 10 \
--val_set_shuffle
python -u run.py \
--task_name zero_shot_forecast \
--is_training 1 \
--root_path ./dataset/tsf \
--data_path m3_quarterly_dataset.tsf \
--test_data_path m4_quarterly_dataset.tsf \
--seasonal_patterns 'Quarterly' \
--model_id m3_Quarterly \
--model $model_name \
--data tsf \
--seq_len 8 \
--label_len 0 \
--token_len 8 \
--test_seq_len 8 \
--test_label_len 0 \
--test_pred_len 8 \
--learning_rate 0.000005 \
--mlp_hidden_dim 1024 \
--batch_size 16 \
--des 'Exp' \
--itr 1 \
--loss 'SMAPE' \
--use_amp \
--cosine \
--tmax 10 \
--val_set_shuffle
python -u run.py \
--task_name zero_shot_forecast \
--is_training 1 \
--root_path ./dataset/tsf \
--data_path m3_monthly_dataset.tsf \
--test_data_path m4_monthly_dataset.tsf \
--seasonal_patterns 'Monthly' \
--model_id m3_Monthly \
--model $model_name \
--data tsf \
--seq_len 24 \
--label_len 0 \
--token_len 24 \
--test_seq_len 24 \
--test_label_len 0 \
--test_pred_len 24 \
--learning_rate 0.00001 \
--mlp_hidden_dim 512 \
--batch_size 16 \
--des 'Exp' \
--itr 1 \
--loss 'SMAPE' \
--use_amp \
--cosine \
--tmax 10 \
--val_set_shuffle
python -u run.py \
--task_name zero_shot_forecast \
--is_training 1 \
--root_path ./dataset/tsf \
--data_path m3_monthly_dataset.tsf \
--test_data_path m4_weekly_dataset.tsf \
--seasonal_patterns 'Monthly' \
--model_id m3_Monthly \
--model $model_name \
--data tsf \
--seq_len 26 \
--label_len 13 \
--token_len 13 \
--test_seq_len 26 \
--test_label_len 13 \
--test_pred_len 13 \
--learning_rate 0.001 \
--mlp_hidden_dim 256 \
--batch_size 16 \
--des 'Exp' \
--itr 1 \
--loss 'SMAPE' \
--use_amp \
--cosine \
--tmax 10 \
--val_set_shuffle
python -u run.py \
--task_name zero_shot_forecast \
--is_training 1 \
--root_path ./dataset/tsf \
--data_path m3_monthly_dataset.tsf \
--test_data_path m4_daily_dataset.tsf \
--seasonal_patterns 'Monthly' \
--model_id m3_Monthly \
--model $model_name \
--data tsf \
--seq_len 28 \
--label_len 14 \
--token_len 14 \
--test_seq_len 28 \
--test_label_len 14 \
--test_pred_len 14 \
--learning_rate 0.0001 \
--mlp_hidden_dim 256 \
--batch_size 16 \
--des 'Exp' \
--itr 1 \
--loss 'SMAPE' \
--use_amp \
--cosine \
--tmax 10 \
--val_set_shuffle
python -u run.py \
--task_name zero_shot_forecast \
--is_training 1 \
--root_path ./dataset/tsf \
--data_path m3_monthly_dataset.tsf \
--test_data_path m4_hourly_dataset.tsf \
--seasonal_patterns 'Monthly' \
--model_id m3_Monthly \
--model $model_name \
--data tsf \
--seq_len 48 \
--label_len 24 \
--token_len 24 \
--test_seq_len 48 \
--test_label_len 24 \
--test_pred_len 48 \
--learning_rate 0.001 \
--mlp_hidden_dim 128 \
--mlp_hidden_layers 3 \
--batch_size 16 \
--des 'Exp' \
--itr 1 \
--loss 'SMAPE' \
--use_amp \
--cosine \
--tmax 10 \
--val_set_shuffle