-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathresult.txt
2880 lines (1920 loc) · 112 KB
/
result.txt
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ETTh1_96_96_CycleNet_ETTh1_ftM_sl96_pl96_cycle24_linear_seed2024
mse:0.37735623121261597, mae:0.3906933665275574
ETTh1_96_96_CycleNet_ETTh1_ftM_sl96_pl96_cycle24_linear_seed2025
mse:0.37910696864128113, mae:0.39192521572113037
ETTh1_96_96_CycleNet_ETTh1_ftM_sl96_pl96_cycle24_linear_seed2026
mse:0.3787690997123718, mae:0.39187154173851013
ETTh1_96_96_CycleNet_ETTh1_ftM_sl96_pl96_cycle24_linear_seed2027
mse:0.37811172008514404, mae:0.390923410654068
ETTh1_96_96_CycleNet_ETTh1_ftM_sl96_pl96_cycle24_linear_seed2028
mse:0.3790924847126007, mae:0.39195364713668823
ETTh1_96_192_CycleNet_ETTh1_ftM_sl96_pl192_cycle24_linear_seed2024
mse:0.42625200748443604, mae:0.41910576820373535
ETTh1_96_192_CycleNet_ETTh1_ftM_sl96_pl192_cycle24_linear_seed2025
mse:0.4246658682823181, mae:0.4180471897125244
ETTh1_96_192_CycleNet_ETTh1_ftM_sl96_pl192_cycle24_linear_seed2026
mse:0.42691347002983093, mae:0.4199761152267456
ETTh1_96_192_CycleNet_ETTh1_ftM_sl96_pl192_cycle24_linear_seed2027
mse:0.42764922976493835, mae:0.4201752543449402
ETTh1_96_192_CycleNet_ETTh1_ftM_sl96_pl192_cycle24_linear_seed2028
mse:0.42772582173347473, mae:0.42016899585723877
ETTh1_96_336_CycleNet_ETTh1_ftM_sl96_pl336_cycle24_linear_seed2024
mse:0.46408185362815857, mae:0.43945297598838806
ETTh1_96_336_CycleNet_ETTh1_ftM_sl96_pl336_cycle24_linear_seed2025
mse:0.46251603960990906, mae:0.43836408853530884
ETTh1_96_336_CycleNet_ETTh1_ftM_sl96_pl336_cycle24_linear_seed2026
mse:0.4651665985584259, mae:0.4399872422218323
ETTh1_96_336_CycleNet_ETTh1_ftM_sl96_pl336_cycle24_linear_seed2027
mse:0.46602317690849304, mae:0.4402254819869995
ETTh1_96_336_CycleNet_ETTh1_ftM_sl96_pl336_cycle24_linear_seed2028
mse:0.462967187166214, mae:0.4383907616138458
ETTh1_96_720_CycleNet_ETTh1_ftM_sl96_pl720_cycle24_linear_seed2024
mse:0.4615226686000824, mae:0.4603857398033142
ETTh1_96_720_CycleNet_ETTh1_ftM_sl96_pl720_cycle24_linear_seed2025
mse:0.4609520435333252, mae:0.45951682329177856
ETTh1_96_720_CycleNet_ETTh1_ftM_sl96_pl720_cycle24_linear_seed2026
mse:0.46242040395736694, mae:0.4617672264575958
ETTh1_96_720_CycleNet_ETTh1_ftM_sl96_pl720_cycle24_linear_seed2027
mse:0.4629516005516052, mae:0.4619641602039337
ETTh1_96_720_CycleNet_ETTh1_ftM_sl96_pl720_cycle24_linear_seed2028
mse:0.46165746450424194, mae:0.4607801139354706
ETTh2_96_96_CycleNet_ETTh2_ftM_sl96_pl96_cycle24_linear_seed2024
mse:0.2862664461135864, mae:0.3355593979358673
ETTh2_96_96_CycleNet_ETTh2_ftM_sl96_pl96_cycle24_linear_seed2025
mse:0.28439590334892273, mae:0.3347092866897583
ETTh2_96_96_CycleNet_ETTh2_ftM_sl96_pl96_cycle24_linear_seed2026
mse:0.2869143784046173, mae:0.336274117231369
ETTh2_96_96_CycleNet_ETTh2_ftM_sl96_pl96_cycle24_linear_seed2027
mse:0.2847973704338074, mae:0.3346918523311615
ETTh2_96_96_CycleNet_ETTh2_ftM_sl96_pl96_cycle24_linear_seed2028
mse:0.2869132459163666, mae:0.33521392941474915
ETTh2_96_192_CycleNet_ETTh2_ftM_sl96_pl192_cycle24_linear_seed2024
mse:0.371719092130661, mae:0.3905860185623169
ETTh2_96_192_CycleNet_ETTh2_ftM_sl96_pl192_cycle24_linear_seed2025
mse:0.3752041757106781, mae:0.3942640721797943
ETTh2_96_192_CycleNet_ETTh2_ftM_sl96_pl192_cycle24_linear_seed2026
mse:0.3727259635925293, mae:0.39143335819244385
ETTh2_96_192_CycleNet_ETTh2_ftM_sl96_pl192_cycle24_linear_seed2027
mse:0.37249067425727844, mae:0.3918420076370239
ETTh2_96_192_CycleNet_ETTh2_ftM_sl96_pl192_cycle24_linear_seed2028
mse:0.3729957938194275, mae:0.3906082808971405
ETTh2_96_336_CycleNet_ETTh2_ftM_sl96_pl336_cycle24_linear_seed2024
mse:0.42191576957702637, mae:0.43321338295936584
ETTh2_96_336_CycleNet_ETTh2_ftM_sl96_pl336_cycle24_linear_seed2025
mse:0.41998282074928284, mae:0.4328041672706604
ETTh2_96_336_CycleNet_ETTh2_ftM_sl96_pl336_cycle24_linear_seed2026
mse:0.4246993660926819, mae:0.43392670154571533
ETTh2_96_336_CycleNet_ETTh2_ftM_sl96_pl336_cycle24_linear_seed2027
mse:0.42120271921157837, mae:0.4329817593097687
ETTh2_96_336_CycleNet_ETTh2_ftM_sl96_pl336_cycle24_linear_seed2028
mse:0.4210875630378723, mae:0.4332006573677063
ETTh2_96_720_CycleNet_ETTh2_ftM_sl96_pl720_cycle24_linear_seed2024
mse:0.457207590341568, mae:0.45961010456085205
ETTh2_96_720_CycleNet_ETTh2_ftM_sl96_pl720_cycle24_linear_seed2025
mse:0.4595717787742615, mae:0.4617205262184143
ETTh2_96_720_CycleNet_ETTh2_ftM_sl96_pl720_cycle24_linear_seed2026
mse:0.4521522521972656, mae:0.4571126103401184
ETTh2_96_720_CycleNet_ETTh2_ftM_sl96_pl720_cycle24_linear_seed2027
mse:0.450603723526001, mae:0.45670050382614136
ETTh2_96_720_CycleNet_ETTh2_ftM_sl96_pl720_cycle24_linear_seed2028
mse:0.45043253898620605, mae:0.4564060866832733
ETTm1_96_96_CycleNet_ETTm1_ftM_sl96_pl96_cycle96_linear_seed2024
mse:0.325470894575119, mae:0.36335477232933044
ETTm1_96_96_CycleNet_ETTm1_ftM_sl96_pl96_cycle96_linear_seed2025
mse:0.32456696033477783, mae:0.3632665276527405
ETTm1_96_96_CycleNet_ETTm1_ftM_sl96_pl96_cycle96_linear_seed2026
mse:0.32552361488342285, mae:0.3638309836387634
ETTm1_96_96_CycleNet_ETTm1_ftM_sl96_pl96_cycle96_linear_seed2027
mse:0.3257141411304474, mae:0.3636602461338043
ETTm1_96_96_CycleNet_ETTm1_ftM_sl96_pl96_cycle96_linear_seed2028
mse:0.32625171542167664, mae:0.36430835723876953
ETTm1_96_192_CycleNet_ETTm1_ftM_sl96_pl192_cycle96_linear_seed2024
mse:0.36568036675453186, mae:0.3818148672580719
ETTm1_96_192_CycleNet_ETTm1_ftM_sl96_pl192_cycle96_linear_seed2025
mse:0.3662087917327881, mae:0.3821142613887787
ETTm1_96_192_CycleNet_ETTm1_ftM_sl96_pl192_cycle96_linear_seed2026
mse:0.366817444562912, mae:0.38268956542015076
ETTm1_96_192_CycleNet_ETTm1_ftM_sl96_pl192_cycle96_linear_seed2027
mse:0.3671875, mae:0.3832363188266754
ETTm1_96_192_CycleNet_ETTm1_ftM_sl96_pl192_cycle96_linear_seed2028
mse:0.36576396226882935, mae:0.38229644298553467
ETTm1_96_336_CycleNet_ETTm1_ftM_sl96_pl336_cycle96_linear_seed2024
mse:0.3960162103176117, mae:0.40158534049987793
ETTm1_96_336_CycleNet_ETTm1_ftM_sl96_pl336_cycle96_linear_seed2025
mse:0.39557474851608276, mae:0.4009769558906555
ETTm1_96_336_CycleNet_ETTm1_ftM_sl96_pl336_cycle96_linear_seed2026
mse:0.3964098393917084, mae:0.4020500183105469
ETTm1_96_336_CycleNet_ETTm1_ftM_sl96_pl336_cycle96_linear_seed2027
mse:0.39616096019744873, mae:0.40133580565452576
ETTm1_96_336_CycleNet_ETTm1_ftM_sl96_pl336_cycle96_linear_seed2028
mse:0.396963894367218, mae:0.4023134708404541
ETTm1_96_720_CycleNet_ETTm1_ftM_sl96_pl720_cycle96_linear_seed2024
mse:0.4573095142841339, mae:0.43412134051322937
ETTm1_96_720_CycleNet_ETTm1_ftM_sl96_pl720_cycle96_linear_seed2025
mse:0.4570459723472595, mae:0.43360212445259094
ETTm1_96_720_CycleNet_ETTm1_ftM_sl96_pl720_cycle96_linear_seed2026
mse:0.45609310269355774, mae:0.43309640884399414
ETTm1_96_720_CycleNet_ETTm1_ftM_sl96_pl720_cycle96_linear_seed2027
mse:0.45684814453125, mae:0.43373024463653564
ETTm1_96_720_CycleNet_ETTm1_ftM_sl96_pl720_cycle96_linear_seed2028
mse:0.4584004282951355, mae:0.4350942373275757
ETTm2_96_96_CycleNet_ETTm2_ftM_sl96_pl96_cycle96_linear_seed2024
mse:0.16761066019535065, mae:0.24934464693069458
ETTm2_96_96_CycleNet_ETTm2_ftM_sl96_pl96_cycle96_linear_seed2025
mse:0.16624054312705994, mae:0.24776972830295563
ETTm2_96_96_CycleNet_ETTm2_ftM_sl96_pl96_cycle96_linear_seed2026
mse:0.16795718669891357, mae:0.24902379512786865
ETTm2_96_96_CycleNet_ETTm2_ftM_sl96_pl96_cycle96_linear_seed2027
mse:0.16608920693397522, mae:0.24711056053638458
ETTm2_96_96_CycleNet_ETTm2_ftM_sl96_pl96_cycle96_linear_seed2028
mse:0.1669841855764389, mae:0.24809446930885315
ETTm2_96_192_CycleNet_ETTm2_ftM_sl96_pl192_cycle96_linear_seed2024
mse:0.23236621916294098, mae:0.2904677987098694
ETTm2_96_192_CycleNet_ETTm2_ftM_sl96_pl192_cycle96_linear_seed2025
mse:0.23230381309986115, mae:0.2906031012535095
ETTm2_96_192_CycleNet_ETTm2_ftM_sl96_pl192_cycle96_linear_seed2026
mse:0.23299825191497803, mae:0.291061669588089
ETTm2_96_192_CycleNet_ETTm2_ftM_sl96_pl192_cycle96_linear_seed2027
mse:0.2337293028831482, mae:0.291194885969162
ETTm2_96_192_CycleNet_ETTm2_ftM_sl96_pl192_cycle96_linear_seed2028
mse:0.2338489443063736, mae:0.29215553402900696
ETTm2_96_336_CycleNet_ETTm2_ftM_sl96_pl336_cycle96_linear_seed2024
mse:0.29292264580726624, mae:0.3302316963672638
ETTm2_96_336_CycleNet_ETTm2_ftM_sl96_pl336_cycle96_linear_seed2025
mse:0.2944558560848236, mae:0.33059513568878174
ETTm2_96_336_CycleNet_ETTm2_ftM_sl96_pl336_cycle96_linear_seed2026
mse:0.2938484847545624, mae:0.3305228352546692
ETTm2_96_336_CycleNet_ETTm2_ftM_sl96_pl336_cycle96_linear_seed2027
mse:0.29339414834976196, mae:0.33035701513290405
ETTm2_96_336_CycleNet_ETTm2_ftM_sl96_pl336_cycle96_linear_seed2028
mse:0.2938019633293152, mae:0.3300764560699463
ETTm2_96_720_CycleNet_ETTm2_ftM_sl96_pl720_cycle96_linear_seed2024
mse:0.3942764103412628, mae:0.3888123631477356
ETTm2_96_720_CycleNet_ETTm2_ftM_sl96_pl720_cycle96_linear_seed2025
mse:0.3946865499019623, mae:0.38923296332359314
ETTm2_96_720_CycleNet_ETTm2_ftM_sl96_pl720_cycle96_linear_seed2026
mse:0.3958677053451538, mae:0.39021238684654236
ETTm2_96_720_CycleNet_ETTm2_ftM_sl96_pl720_cycle96_linear_seed2027
mse:0.3982625901699066, mae:0.3915262818336487
ETTm2_96_720_CycleNet_ETTm2_ftM_sl96_pl720_cycle96_linear_seed2028
mse:0.39443811774253845, mae:0.3891458511352539
weather_96_96_CycleNet_custom_ftM_sl96_pl96_cycle144_linear_seed2024
mse:0.1702975183725357, mae:0.21609237790107727
weather_96_96_CycleNet_custom_ftM_sl96_pl96_cycle144_linear_seed2025
mse:0.17032968997955322, mae:0.21633410453796387
weather_96_96_CycleNet_custom_ftM_sl96_pl96_cycle144_linear_seed2026
mse:0.17065058648586273, mae:0.2164858877658844
weather_96_96_CycleNet_custom_ftM_sl96_pl96_cycle144_linear_seed2027
mse:0.16991576552391052, mae:0.21599353849887848
weather_96_96_CycleNet_custom_ftM_sl96_pl96_cycle144_linear_seed2028
mse:0.17075616121292114, mae:0.21675065159797668
weather_96_192_CycleNet_custom_ftM_sl96_pl192_cycle144_linear_seed2024
mse:0.22227880358695984, mae:0.2597779631614685
weather_96_192_CycleNet_custom_ftM_sl96_pl192_cycle144_linear_seed2025
mse:0.22224023938179016, mae:0.25916174054145813
weather_96_192_CycleNet_custom_ftM_sl96_pl192_cycle144_linear_seed2026
mse:0.22185829281806946, mae:0.25903552770614624
weather_96_192_CycleNet_custom_ftM_sl96_pl192_cycle144_linear_seed2027
mse:0.22242754697799683, mae:0.2593211233615875
weather_96_192_CycleNet_custom_ftM_sl96_pl192_cycle144_linear_seed2028
mse:0.22222420573234558, mae:0.259328156709671
weather_96_336_CycleNet_custom_ftM_sl96_pl336_cycle144_linear_seed2024
mse:0.27550917863845825, mae:0.29648494720458984
weather_96_336_CycleNet_custom_ftM_sl96_pl336_cycle144_linear_seed2025
mse:0.27651968598365784, mae:0.29730522632598877
weather_96_336_CycleNet_custom_ftM_sl96_pl336_cycle144_linear_seed2026
mse:0.27558261156082153, mae:0.2966414988040924
weather_96_336_CycleNet_custom_ftM_sl96_pl336_cycle144_linear_seed2027
mse:0.276065468788147, mae:0.29711848497390747
weather_96_336_CycleNet_custom_ftM_sl96_pl336_cycle144_linear_seed2028
mse:0.27553221583366394, mae:0.296698659658432
weather_96_720_CycleNet_custom_ftM_sl96_pl720_cycle144_linear_seed2024
mse:0.3498084247112274, mae:0.3453291952610016
weather_96_720_CycleNet_custom_ftM_sl96_pl720_cycle144_linear_seed2025
mse:0.349247008562088, mae:0.34464532136917114
weather_96_720_CycleNet_custom_ftM_sl96_pl720_cycle144_linear_seed2026
mse:0.35015812516212463, mae:0.34560152888298035
weather_96_720_CycleNet_custom_ftM_sl96_pl720_cycle144_linear_seed2027
mse:0.3496531546115875, mae:0.3449592888355255
weather_96_720_CycleNet_custom_ftM_sl96_pl720_cycle144_linear_seed2028
mse:0.34982702136039734, mae:0.3451880216598511
Electricity_96_96_CycleNet_custom_ftM_sl96_pl96_cycle168_linear_seed2024
mse:0.14150892198085785, mae:0.23447194695472717
Electricity_96_96_CycleNet_custom_ftM_sl96_pl96_cycle168_linear_seed2025
mse:0.14147329330444336, mae:0.23437844216823578
Electricity_96_96_CycleNet_custom_ftM_sl96_pl96_cycle168_linear_seed2026
mse:0.1413920819759369, mae:0.2344805747270584
Electricity_96_96_CycleNet_custom_ftM_sl96_pl96_cycle168_linear_seed2027
mse:0.14143089950084686, mae:0.23448316752910614
Electricity_96_96_CycleNet_custom_ftM_sl96_pl96_cycle168_linear_seed2028
mse:0.14199742674827576, mae:0.2354581505060196
Electricity_96_192_CycleNet_custom_ftM_sl96_pl192_cycle168_linear_seed2024
mse:0.15553411841392517, mae:0.2472929060459137
Electricity_96_192_CycleNet_custom_ftM_sl96_pl192_cycle168_linear_seed2025
mse:0.15551365911960602, mae:0.24708572030067444
Electricity_96_192_CycleNet_custom_ftM_sl96_pl192_cycle168_linear_seed2026
mse:0.15549464523792267, mae:0.24714484810829163
Electricity_96_192_CycleNet_custom_ftM_sl96_pl192_cycle168_linear_seed2027
mse:0.1555098593235016, mae:0.2471325546503067
Electricity_96_192_CycleNet_custom_ftM_sl96_pl192_cycle168_linear_seed2028
mse:0.1554631143808365, mae:0.24700330197811127
Electricity_96_336_CycleNet_custom_ftM_sl96_pl336_cycle168_linear_seed2024
mse:0.17260263860225677, mae:0.264797180891037
Electricity_96_336_CycleNet_custom_ftM_sl96_pl336_cycle168_linear_seed2025
mse:0.17259299755096436, mae:0.26481884717941284
Electricity_96_336_CycleNet_custom_ftM_sl96_pl336_cycle168_linear_seed2026
mse:0.1724998503923416, mae:0.26470622420310974
Electricity_96_336_CycleNet_custom_ftM_sl96_pl336_cycle168_linear_seed2027
mse:0.1724628508090973, mae:0.26452529430389404
Electricity_96_336_CycleNet_custom_ftM_sl96_pl336_cycle168_linear_seed2028
mse:0.17241883277893066, mae:0.2645978331565857
Electricity_96_720_CycleNet_custom_ftM_sl96_pl720_cycle168_linear_seed2024
mse:0.21070490777492523, mae:0.29697510600090027
Electricity_96_720_CycleNet_custom_ftM_sl96_pl720_cycle168_linear_seed2025
mse:0.2107187658548355, mae:0.2968423366546631
Electricity_96_720_CycleNet_custom_ftM_sl96_pl720_cycle168_linear_seed2026
mse:0.21063557267189026, mae:0.2968824803829193
Electricity_96_720_CycleNet_custom_ftM_sl96_pl720_cycle168_linear_seed2027
mse:0.2106168568134308, mae:0.2968743145465851
Electricity_96_720_CycleNet_custom_ftM_sl96_pl720_cycle168_linear_seed2028
mse:0.21065883338451385, mae:0.29691943526268005
traffic_96_96_CycleNet_custom_ftM_sl96_pl96_cycle168_linear_seed2024
mse:0.48030737042427063, mae:0.31357187032699585
traffic_96_96_CycleNet_custom_ftM_sl96_pl96_cycle168_linear_seed2025
mse:0.48071277141571045, mae:0.31426092982292175
traffic_96_96_CycleNet_custom_ftM_sl96_pl96_cycle168_linear_seed2026
mse:0.4811263084411621, mae:0.31481269001960754
traffic_96_96_CycleNet_custom_ftM_sl96_pl96_cycle168_linear_seed2027
mse:0.48074907064437866, mae:0.3140023648738861
traffic_96_96_CycleNet_custom_ftM_sl96_pl96_cycle168_linear_seed2028
mse:0.4804864525794983, mae:0.3137320876121521
traffic_96_192_CycleNet_custom_ftM_sl96_pl192_cycle168_linear_seed2024
mse:0.4821329712867737, mae:0.31332042813301086
traffic_96_192_CycleNet_custom_ftM_sl96_pl192_cycle168_linear_seed2025
mse:0.4826744794845581, mae:0.31364673376083374
traffic_96_192_CycleNet_custom_ftM_sl96_pl192_cycle168_linear_seed2026
mse:0.4831235706806183, mae:0.3149402141571045
traffic_96_192_CycleNet_custom_ftM_sl96_pl192_cycle168_linear_seed2027
mse:0.4825677275657654, mae:0.3135986626148224
traffic_96_192_CycleNet_custom_ftM_sl96_pl192_cycle168_linear_seed2028
mse:0.48228880763053894, mae:0.3132021129131317
traffic_96_336_CycleNet_custom_ftM_sl96_pl336_cycle168_linear_seed2024
mse:0.476190984249115, mae:0.3034098148345947
traffic_96_336_CycleNet_custom_ftM_sl96_pl336_cycle168_linear_seed2025
mse:0.47701555490493774, mae:0.30354005098342896
traffic_96_336_CycleNet_custom_ftM_sl96_pl336_cycle168_linear_seed2026
mse:0.47671744227409363, mae:0.3037511706352234
traffic_96_336_CycleNet_custom_ftM_sl96_pl336_cycle168_linear_seed2027
mse:0.4763089120388031, mae:0.3033456802368164
traffic_96_336_CycleNet_custom_ftM_sl96_pl336_cycle168_linear_seed2028
mse:0.4761827886104584, mae:0.3036693334579468
traffic_96_720_CycleNet_custom_ftM_sl96_pl720_cycle168_linear_seed2024
mse:0.5047227740287781, mae:0.32119956612586975
traffic_96_720_CycleNet_custom_ftM_sl96_pl720_cycle168_linear_seed2025
mse:0.5020655989646912, mae:0.31959009170532227
traffic_96_720_CycleNet_custom_ftM_sl96_pl720_cycle168_linear_seed2026
mse:0.5026708245277405, mae:0.3197212219238281
traffic_96_720_CycleNet_custom_ftM_sl96_pl720_cycle168_linear_seed2027
mse:0.5031951069831848, mae:0.3201368749141693
traffic_96_720_CycleNet_custom_ftM_sl96_pl720_cycle168_linear_seed2028
mse:0.504150390625, mae:0.3211040794849396
Solar_96_96_CycleNet_Solar_ftM_sl96_pl96_cycle144_linear_seed2024
mse:0.20768886804580688, mae:0.25643160939216614
Solar_96_96_CycleNet_Solar_ftM_sl96_pl96_cycle144_linear_seed2025
mse:0.2106112837791443, mae:0.26209425926208496
Solar_96_96_CycleNet_Solar_ftM_sl96_pl96_cycle144_linear_seed2026
mse:0.20834310352802277, mae:0.25704705715179443
Solar_96_96_CycleNet_Solar_ftM_sl96_pl96_cycle144_linear_seed2027
mse:0.20965734124183655, mae:0.25835466384887695
Solar_96_96_CycleNet_Solar_ftM_sl96_pl96_cycle144_linear_seed2028
mse:0.21135497093200684, mae:0.26671770215034485
Solar_96_192_CycleNet_Solar_ftM_sl96_pl192_cycle144_linear_seed2024
mse:0.23126140236854553, mae:0.26938503980636597
Solar_96_192_CycleNet_Solar_ftM_sl96_pl192_cycle144_linear_seed2025
mse:0.23515921831130981, mae:0.27257803082466125
Solar_96_192_CycleNet_Solar_ftM_sl96_pl192_cycle144_linear_seed2026
mse:0.2311515510082245, mae:0.2704421281814575
Solar_96_192_CycleNet_Solar_ftM_sl96_pl192_cycle144_linear_seed2027
mse:0.22963936626911163, mae:0.2641666531562805
Solar_96_192_CycleNet_Solar_ftM_sl96_pl192_cycle144_linear_seed2028
mse:0.228937566280365, mae:0.2718738317489624
Solar_96_336_CycleNet_Solar_ftM_sl96_pl336_cycle144_linear_seed2024
mse:0.2465696781873703, mae:0.27214711904525757
Solar_96_336_CycleNet_Solar_ftM_sl96_pl336_cycle144_linear_seed2025
mse:0.242640882730484, mae:0.2764446437358856
Solar_96_336_CycleNet_Solar_ftM_sl96_pl336_cycle144_linear_seed2026
mse:0.24531078338623047, mae:0.269906222820282
Solar_96_336_CycleNet_Solar_ftM_sl96_pl336_cycle144_linear_seed2027
mse:0.24690638482570648, mae:0.2798268795013428
Solar_96_336_CycleNet_Solar_ftM_sl96_pl336_cycle144_linear_seed2028
mse:0.25133395195007324, mae:0.27914905548095703
Solar_96_720_CycleNet_Solar_ftM_sl96_pl720_cycle144_linear_seed2024
mse:0.25811874866485596, mae:0.2745969593524933
Solar_96_720_CycleNet_Solar_ftM_sl96_pl720_cycle144_linear_seed2025
mse:0.25349804759025574, mae:0.2707839608192444
Solar_96_720_CycleNet_Solar_ftM_sl96_pl720_cycle144_linear_seed2026
mse:0.25435104966163635, mae:0.2721977233886719
Solar_96_720_CycleNet_Solar_ftM_sl96_pl720_cycle144_linear_seed2027
mse:0.25660279393196106, mae:0.28054726123809814
Solar_96_720_CycleNet_Solar_ftM_sl96_pl720_cycle144_linear_seed2028
mse:0.25300541520118713, mae:0.2756086587905884
ETTh1_336_96_CycleNet_ETTh1_ftM_sl336_pl96_cycle24_linear_seed2024
mse:0.3715338408946991, mae:0.3935357332229614
ETTh1_336_96_CycleNet_ETTh1_ftM_sl336_pl96_cycle24_linear_seed2025
mse:0.37887245416641235, mae:0.3999423384666443
ETTh1_336_96_CycleNet_ETTh1_ftM_sl336_pl96_cycle24_linear_seed2026
mse:0.3720066249370575, mae:0.3940100073814392
ETTh1_336_96_CycleNet_ETTh1_ftM_sl336_pl96_cycle24_linear_seed2027
mse:0.3747260868549347, mae:0.39681199193000793
ETTh1_336_96_CycleNet_ETTh1_ftM_sl336_pl96_cycle24_linear_seed2028
mse:0.37535810470581055, mae:0.3981924057006836
ETTh1_336_192_CycleNet_ETTh1_ftM_sl336_pl192_cycle24_linear_seed2024
mse:0.4061647653579712, mae:0.4147934019565582
ETTh1_336_192_CycleNet_ETTh1_ftM_sl336_pl192_cycle24_linear_seed2025
mse:0.40687838196754456, mae:0.41534656286239624
ETTh1_336_192_CycleNet_ETTh1_ftM_sl336_pl192_cycle24_linear_seed2026
mse:0.4082750082015991, mae:0.41675615310668945
ETTh1_336_192_CycleNet_ETTh1_ftM_sl336_pl192_cycle24_linear_seed2027
mse:0.4064582586288452, mae:0.4151207208633423
ETTh1_336_192_CycleNet_ETTh1_ftM_sl336_pl192_cycle24_linear_seed2028
mse:0.4055982232093811, mae:0.4143003821372986
ETTh1_336_336_CycleNet_ETTh1_ftM_sl336_pl336_cycle24_linear_seed2024
mse:0.43149954080581665, mae:0.4309459924697876
ETTh1_336_336_CycleNet_ETTh1_ftM_sl336_pl336_cycle24_linear_seed2025
mse:0.4304403066635132, mae:0.4304051697254181
ETTh1_336_336_CycleNet_ETTh1_ftM_sl336_pl336_cycle24_linear_seed2026
mse:0.4296521544456482, mae:0.4291735887527466
ETTh1_336_336_CycleNet_ETTh1_ftM_sl336_pl336_cycle24_linear_seed2027
mse:0.4358811676502228, mae:0.43490681052207947
ETTh1_336_336_CycleNet_ETTh1_ftM_sl336_pl336_cycle24_linear_seed2028
mse:0.429622620344162, mae:0.42914658784866333
ETTh1_336_720_CycleNet_ETTh1_ftM_sl336_pl720_cycle24_linear_seed2024
mse:0.45091521739959717, mae:0.46394458413124084
ETTh1_336_720_CycleNet_ETTh1_ftM_sl336_pl720_cycle24_linear_seed2025
mse:0.4524323344230652, mae:0.4652428925037384
ETTh1_336_720_CycleNet_ETTh1_ftM_sl336_pl720_cycle24_linear_seed2026
mse:0.450785756111145, mae:0.4642534852027893
ETTh1_336_720_CycleNet_ETTh1_ftM_sl336_pl720_cycle24_linear_seed2027
mse:0.44974154233932495, mae:0.4634825587272644
ETTh1_336_720_CycleNet_ETTh1_ftM_sl336_pl720_cycle24_linear_seed2028
mse:0.450425922870636, mae:0.4641999900341034
ETTh2_336_96_CycleNet_ETTh2_ftM_sl336_pl96_cycle24_linear_seed2024
mse:0.27878323197364807, mae:0.3416886329650879
ETTh2_336_96_CycleNet_ETTh2_ftM_sl336_pl96_cycle24_linear_seed2025
mse:0.28083083033561707, mae:0.34107255935668945
ETTh2_336_96_CycleNet_ETTh2_ftM_sl336_pl96_cycle24_linear_seed2026
mse:0.2771039307117462, mae:0.3399207890033722
ETTh2_336_96_CycleNet_ETTh2_ftM_sl336_pl96_cycle24_linear_seed2027
mse:0.2787003219127655, mae:0.3411407768726349
ETTh2_336_96_CycleNet_ETTh2_ftM_sl336_pl96_cycle24_linear_seed2028
mse:0.2839578688144684, mae:0.34449005126953125
ETTh2_336_192_CycleNet_ETTh2_ftM_sl336_pl192_cycle24_linear_seed2024
mse:0.34157368540763855, mae:0.38496077060699463
ETTh2_336_192_CycleNet_ETTh2_ftM_sl336_pl192_cycle24_linear_seed2025
mse:0.339201420545578, mae:0.3841131925582886
ETTh2_336_192_CycleNet_ETTh2_ftM_sl336_pl192_cycle24_linear_seed2026
mse:0.34089773893356323, mae:0.38446173071861267
ETTh2_336_192_CycleNet_ETTh2_ftM_sl336_pl192_cycle24_linear_seed2027
mse:0.34760501980781555, mae:0.3883821368217468
ETTh2_336_192_CycleNet_ETTh2_ftM_sl336_pl192_cycle24_linear_seed2028
mse:0.3425639867782593, mae:0.386216402053833
ETTh2_336_336_CycleNet_ETTh2_ftM_sl336_pl336_cycle24_linear_seed2024
mse:0.37221238017082214, mae:0.41380995512008667
ETTh2_336_336_CycleNet_ETTh2_ftM_sl336_pl336_cycle24_linear_seed2025
mse:0.3691387176513672, mae:0.41201865673065186
ETTh2_336_336_CycleNet_ETTh2_ftM_sl336_pl336_cycle24_linear_seed2026
mse:0.37195098400115967, mae:0.4128502905368805
ETTh2_336_336_CycleNet_ETTh2_ftM_sl336_pl336_cycle24_linear_seed2027
mse:0.3733269274234772, mae:0.4142526090145111
ETTh2_336_336_CycleNet_ETTh2_ftM_sl336_pl336_cycle24_linear_seed2028
mse:0.37104275822639465, mae:0.41242578625679016
ETTh2_336_720_CycleNet_ETTh2_ftM_sl336_pl720_cycle24_linear_seed2024
mse:0.4259014427661896, mae:0.45125797390937805
ETTh2_336_720_CycleNet_ETTh2_ftM_sl336_pl720_cycle24_linear_seed2025
mse:0.4277993440628052, mae:0.45264336466789246
ETTh2_336_720_CycleNet_ETTh2_ftM_sl336_pl720_cycle24_linear_seed2026
mse:0.42456501722335815, mae:0.45070597529411316
ETTh2_336_720_CycleNet_ETTh2_ftM_sl336_pl720_cycle24_linear_seed2027
mse:0.4236453175544739, mae:0.45009249448776245
ETTh2_336_720_CycleNet_ETTh2_ftM_sl336_pl720_cycle24_linear_seed2028
mse:0.4297761023044586, mae:0.4539051353931427
ETTm1_336_96_CycleNet_ETTm1_ftM_sl336_pl96_cycle96_linear_seed2024
mse:0.298671156167984, mae:0.34711670875549316
ETTm1_336_96_CycleNet_ETTm1_ftM_sl336_pl96_cycle96_linear_seed2025
mse:0.3004066050052643, mae:0.34836483001708984
ETTm1_336_96_CycleNet_ETTm1_ftM_sl336_pl96_cycle96_linear_seed2026
mse:0.29999250173568726, mae:0.34869855642318726
ETTm1_336_96_CycleNet_ETTm1_ftM_sl336_pl96_cycle96_linear_seed2027
mse:0.30093148350715637, mae:0.3485966920852661
ETTm1_336_96_CycleNet_ETTm1_ftM_sl336_pl96_cycle96_linear_seed2028
mse:0.29969272017478943, mae:0.3479306101799011
ETTm1_336_192_CycleNet_ETTm1_ftM_sl336_pl192_cycle96_linear_seed2024
mse:0.33324798941612244, mae:0.3666840195655823
ETTm1_336_192_CycleNet_ETTm1_ftM_sl336_pl192_cycle96_linear_seed2025
mse:0.3343588411808014, mae:0.3678271174430847
ETTm1_336_192_CycleNet_ETTm1_ftM_sl336_pl192_cycle96_linear_seed2026
mse:0.3393435478210449, mae:0.37026897072792053
ETTm1_336_192_CycleNet_ETTm1_ftM_sl336_pl192_cycle96_linear_seed2027
mse:0.33294108510017395, mae:0.3669552803039551
ETTm1_336_192_CycleNet_ETTm1_ftM_sl336_pl192_cycle96_linear_seed2028
mse:0.33281439542770386, mae:0.3670335114002228
ETTm1_336_336_CycleNet_ETTm1_ftM_sl336_pl336_cycle96_linear_seed2024
mse:0.3667549192905426, mae:0.386478990316391
ETTm1_336_336_CycleNet_ETTm1_ftM_sl336_pl336_cycle96_linear_seed2025
mse:0.36603835225105286, mae:0.3861365020275116
ETTm1_336_336_CycleNet_ETTm1_ftM_sl336_pl336_cycle96_linear_seed2026
mse:0.3635561466217041, mae:0.38444337248802185
ETTm1_336_336_CycleNet_ETTm1_ftM_sl336_pl336_cycle96_linear_seed2027
mse:0.37839770317077637, mae:0.39267370104789734
ETTm1_336_336_CycleNet_ETTm1_ftM_sl336_pl336_cycle96_linear_seed2028
mse:0.3652951419353485, mae:0.3850238025188446
ETTm1_336_720_CycleNet_ETTm1_ftM_sl336_pl720_cycle96_linear_seed2024
mse:0.4167792797088623, mae:0.41420409083366394
ETTm1_336_720_CycleNet_ETTm1_ftM_sl336_pl720_cycle96_linear_seed2025
mse:0.4179549813270569, mae:0.41515472531318665
ETTm1_336_720_CycleNet_ETTm1_ftM_sl336_pl720_cycle96_linear_seed2026
mse:0.41834068298339844, mae:0.41557034850120544
ETTm1_336_720_CycleNet_ETTm1_ftM_sl336_pl720_cycle96_linear_seed2027
mse:0.41632479429244995, mae:0.41334912180900574
ETTm1_336_720_CycleNet_ETTm1_ftM_sl336_pl720_cycle96_linear_seed2028
mse:0.4188753068447113, mae:0.41521644592285156
ETTm2_336_96_CycleNet_ETTm2_ftM_sl336_pl96_cycle96_linear_seed2024
mse:0.15976582467556, mae:0.24835261702537537
ETTm2_336_96_CycleNet_ETTm2_ftM_sl336_pl96_cycle96_linear_seed2025
mse:0.15849179029464722, mae:0.24833901226520538
ETTm2_336_96_CycleNet_ETTm2_ftM_sl336_pl96_cycle96_linear_seed2026
mse:0.15947158634662628, mae:0.24811019003391266
ETTm2_336_96_CycleNet_ETTm2_ftM_sl336_pl96_cycle96_linear_seed2027
mse:0.15986613929271698, mae:0.2483973205089569
ETTm2_336_96_CycleNet_ETTm2_ftM_sl336_pl96_cycle96_linear_seed2028
mse:0.15804079174995422, mae:0.24599270522594452
ETTm2_336_192_CycleNet_ETTm2_ftM_sl336_pl192_cycle96_linear_seed2024
mse:0.2147980034351349, mae:0.28607380390167236
ETTm2_336_192_CycleNet_ETTm2_ftM_sl336_pl192_cycle96_linear_seed2025
mse:0.21344596147537231, mae:0.28551921248435974
ETTm2_336_192_CycleNet_ETTm2_ftM_sl336_pl192_cycle96_linear_seed2026
mse:0.21571974456310272, mae:0.2860185205936432
ETTm2_336_192_CycleNet_ETTm2_ftM_sl336_pl192_cycle96_linear_seed2027
mse:0.21536043286323547, mae:0.2866154611110687
ETTm2_336_192_CycleNet_ETTm2_ftM_sl336_pl192_cycle96_linear_seed2028
mse:0.21448025107383728, mae:0.28591784834861755
ETTm2_336_336_CycleNet_ETTm2_ftM_sl336_pl336_cycle96_linear_seed2024
mse:0.26954978704452515, mae:0.32275593280792236
ETTm2_336_336_CycleNet_ETTm2_ftM_sl336_pl336_cycle96_linear_seed2025
mse:0.2705780565738678, mae:0.3238513767719269
ETTm2_336_336_CycleNet_ETTm2_ftM_sl336_pl336_cycle96_linear_seed2026
mse:0.26887720823287964, mae:0.3211697041988373
ETTm2_336_336_CycleNet_ETTm2_ftM_sl336_pl336_cycle96_linear_seed2027
mse:0.26955363154411316, mae:0.32164299488067627
ETTm2_336_336_CycleNet_ETTm2_ftM_sl336_pl336_cycle96_linear_seed2028
mse:0.26846861839294434, mae:0.32180550694465637
ETTm2_336_720_CycleNet_ETTm2_ftM_sl336_pl720_cycle96_linear_seed2024
mse:0.3634638488292694, mae:0.3822384178638458
ETTm2_336_720_CycleNet_ETTm2_ftM_sl336_pl720_cycle96_linear_seed2025
mse:0.36339882016181946, mae:0.38259178400039673
ETTm2_336_720_CycleNet_ETTm2_ftM_sl336_pl720_cycle96_linear_seed2026
mse:0.36454305052757263, mae:0.38276907801628113
ETTm2_336_720_CycleNet_ETTm2_ftM_sl336_pl720_cycle96_linear_seed2027
mse:0.36528509855270386, mae:0.38361504673957825
ETTm2_336_720_CycleNet_ETTm2_ftM_sl336_pl720_cycle96_linear_seed2028
mse:0.3631466329097748, mae:0.3820987641811371
weather_336_96_CycleNet_custom_ftM_sl336_pl96_cycle144_linear_seed2024
mse:0.1676836758852005, mae:0.22128701210021973
weather_336_96_CycleNet_custom_ftM_sl336_pl96_cycle144_linear_seed2025
mse:0.16810666024684906, mae:0.22190281748771667
weather_336_96_CycleNet_custom_ftM_sl336_pl96_cycle144_linear_seed2026
mse:0.167035773396492, mae:0.22103768587112427
weather_336_96_CycleNet_custom_ftM_sl336_pl96_cycle144_linear_seed2027
mse:0.16703292727470398, mae:0.22110600769519806
weather_336_96_CycleNet_custom_ftM_sl336_pl96_cycle144_linear_seed2028
mse:0.16662418842315674, mae:0.2206973433494568
weather_336_192_CycleNet_custom_ftM_sl336_pl192_cycle144_linear_seed2024
mse:0.2125142514705658, mae:0.25842422246932983
weather_336_192_CycleNet_custom_ftM_sl336_pl192_cycle144_linear_seed2025
mse:0.21191461384296417, mae:0.25813809037208557
weather_336_192_CycleNet_custom_ftM_sl336_pl192_cycle144_linear_seed2026
mse:0.2129918336868286, mae:0.25857266783714294
weather_336_192_CycleNet_custom_ftM_sl336_pl192_cycle144_linear_seed2027
mse:0.21259574592113495, mae:0.25850850343704224
weather_336_192_CycleNet_custom_ftM_sl336_pl192_cycle144_linear_seed2028
mse:0.2127307504415512, mae:0.2583859860897064
weather_336_336_CycleNet_custom_ftM_sl336_pl336_cycle144_linear_seed2024
mse:0.2607318162918091, mae:0.2926514744758606
weather_336_336_CycleNet_custom_ftM_sl336_pl336_cycle144_linear_seed2025
mse:0.26164722442626953, mae:0.2937069833278656
weather_336_336_CycleNet_custom_ftM_sl336_pl336_cycle144_linear_seed2026
mse:0.26093634963035583, mae:0.2938261926174164
weather_336_336_CycleNet_custom_ftM_sl336_pl336_cycle144_linear_seed2027
mse:0.2589443325996399, mae:0.292070209980011
weather_336_336_CycleNet_custom_ftM_sl336_pl336_cycle144_linear_seed2028
mse:0.26026591658592224, mae:0.292758047580719
weather_336_720_CycleNet_custom_ftM_sl336_pl720_cycle144_linear_seed2024
mse:0.3287074863910675, mae:0.3398412764072418
weather_336_720_CycleNet_custom_ftM_sl336_pl720_cycle144_linear_seed2025
mse:0.32910335063934326, mae:0.3392840027809143
weather_336_720_CycleNet_custom_ftM_sl336_pl720_cycle144_linear_seed2026
mse:0.32799264788627625, mae:0.3394571542739868
weather_336_720_CycleNet_custom_ftM_sl336_pl720_cycle144_linear_seed2027
mse:0.32818666100502014, mae:0.33990752696990967
weather_336_720_CycleNet_custom_ftM_sl336_pl720_cycle144_linear_seed2028
mse:0.3277134895324707, mae:0.33915913105010986
Electricity_336_96_CycleNet_custom_ftM_sl336_pl96_cycle168_linear_seed2024
mse:0.12881223857402802, mae:0.22333483397960663
Electricity_336_96_CycleNet_custom_ftM_sl336_pl96_cycle168_linear_seed2025
mse:0.12881527841091156, mae:0.223349928855896
Electricity_336_96_CycleNet_custom_ftM_sl336_pl96_cycle168_linear_seed2026
mse:0.1289484202861786, mae:0.2236005961894989
Electricity_336_96_CycleNet_custom_ftM_sl336_pl96_cycle168_linear_seed2027
mse:0.12886737287044525, mae:0.22361376881599426
Electricity_336_96_CycleNet_custom_ftM_sl336_pl96_cycle168_linear_seed2028
mse:0.12895840406417847, mae:0.22357863187789917
Electricity_336_192_CycleNet_custom_ftM_sl336_pl192_cycle168_linear_seed2024
mse:0.1440369337797165, mae:0.2373443990945816
Electricity_336_192_CycleNet_custom_ftM_sl336_pl192_cycle168_linear_seed2025
mse:0.14431998133659363, mae:0.23795761168003082
Electricity_336_192_CycleNet_custom_ftM_sl336_pl192_cycle168_linear_seed2026
mse:0.14408758282661438, mae:0.23739628493785858
Electricity_336_192_CycleNet_custom_ftM_sl336_pl192_cycle168_linear_seed2027
mse:0.14405487477779388, mae:0.23749864101409912
Electricity_336_192_CycleNet_custom_ftM_sl336_pl192_cycle168_linear_seed2028
mse:0.14405666291713715, mae:0.2373877763748169
Electricity_336_336_CycleNet_custom_ftM_sl336_pl336_cycle168_linear_seed2024
mse:0.16065260767936707, mae:0.2545630931854248
Electricity_336_336_CycleNet_custom_ftM_sl336_pl336_cycle168_linear_seed2025
mse:0.16056132316589355, mae:0.2544333040714264
Electricity_336_336_CycleNet_custom_ftM_sl336_pl336_cycle168_linear_seed2026
mse:0.1607205867767334, mae:0.2547629177570343
Electricity_336_336_CycleNet_custom_ftM_sl336_pl336_cycle168_linear_seed2027
mse:0.16056428849697113, mae:0.2544248700141907
Electricity_336_336_CycleNet_custom_ftM_sl336_pl336_cycle168_linear_seed2028
mse:0.1605885624885559, mae:0.2544662058353424
Electricity_336_720_CycleNet_custom_ftM_sl336_pl720_cycle168_linear_seed2024
mse:0.19846852123737335, mae:0.2872874438762665
Electricity_336_720_CycleNet_custom_ftM_sl336_pl720_cycle168_linear_seed2025
mse:0.19956795871257782, mae:0.2887294292449951
Electricity_336_720_CycleNet_custom_ftM_sl336_pl720_cycle168_linear_seed2026
mse:0.19861777126789093, mae:0.2874719202518463
Electricity_336_720_CycleNet_custom_ftM_sl336_pl720_cycle168_linear_seed2027
mse:0.1984778493642807, mae:0.2872791290283203
Electricity_336_720_CycleNet_custom_ftM_sl336_pl720_cycle168_linear_seed2028
mse:0.19887664914131165, mae:0.28763917088508606
traffic_336_96_CycleNet_custom_ftM_sl336_pl96_cycle168_linear_seed2024
mse:0.3957320749759674, mae:0.2757105231285095
traffic_336_96_CycleNet_custom_ftM_sl336_pl96_cycle168_linear_seed2025
mse:0.39885663986206055, mae:0.2832310199737549
traffic_336_96_CycleNet_custom_ftM_sl336_pl96_cycle168_linear_seed2026
mse:0.3957514762878418, mae:0.275077760219574
traffic_336_96_CycleNet_custom_ftM_sl336_pl96_cycle168_linear_seed2027
mse:0.39980271458625793, mae:0.28499624133110046
traffic_336_96_CycleNet_custom_ftM_sl336_pl96_cycle168_linear_seed2028
mse:0.3961499035358429, mae:0.2754485309123993
traffic_336_192_CycleNet_custom_ftM_sl336_pl192_cycle168_linear_seed2024
mse:0.4115445911884308, mae:0.2821391224861145
traffic_336_192_CycleNet_custom_ftM_sl336_pl192_cycle168_linear_seed2025
mse:0.41349735856056213, mae:0.2885080873966217
traffic_336_192_CycleNet_custom_ftM_sl336_pl192_cycle168_linear_seed2026
mse:0.411205530166626, mae:0.28110870718955994
traffic_336_192_CycleNet_custom_ftM_sl336_pl192_cycle168_linear_seed2027
mse:0.4123813807964325, mae:0.28357598185539246
traffic_336_192_CycleNet_custom_ftM_sl336_pl192_cycle168_linear_seed2028
mse:0.41135212779045105, mae:0.2812424898147583
traffic_336_336_CycleNet_custom_ftM_sl336_pl336_cycle168_linear_seed2024
mse:0.423841267824173, mae:0.2882636487483978
traffic_336_336_CycleNet_custom_ftM_sl336_pl336_cycle168_linear_seed2025
mse:0.4238876700401306, mae:0.28839465975761414
traffic_336_336_CycleNet_custom_ftM_sl336_pl336_cycle168_linear_seed2026
mse:0.42770132422447205, mae:0.2978266775608063
traffic_336_336_CycleNet_custom_ftM_sl336_pl336_cycle168_linear_seed2027
mse:0.42375287413597107, mae:0.2875494360923767
traffic_336_336_CycleNet_custom_ftM_sl336_pl336_cycle168_linear_seed2028
mse:0.42387115955352783, mae:0.28777778148651123
traffic_336_720_CycleNet_custom_ftM_sl336_pl720_cycle168_linear_seed2024
mse:0.45030805468559265, mae:0.3047313392162323
traffic_336_720_CycleNet_custom_ftM_sl336_pl720_cycle168_linear_seed2025
mse:0.45000678300857544, mae:0.30538758635520935
traffic_336_720_CycleNet_custom_ftM_sl336_pl720_cycle168_linear_seed2026
mse:0.450639933347702, mae:0.3060470223426819
traffic_336_720_CycleNet_custom_ftM_sl336_pl720_cycle168_linear_seed2027
mse:0.44990745186805725, mae:0.3044041693210602
traffic_336_720_CycleNet_custom_ftM_sl336_pl720_cycle168_linear_seed2028
mse:0.4496830105781555, mae:0.30476465821266174
Solar_336_96_CycleNet_Solar_ftM_sl336_pl96_cycle144_linear_seed2024
mse:0.20222535729408264, mae:0.25429171323776245
Solar_336_96_CycleNet_Solar_ftM_sl336_pl96_cycle144_linear_seed2025
mse:0.20205733180046082, mae:0.2526181936264038
Solar_336_96_CycleNet_Solar_ftM_sl336_pl96_cycle144_linear_seed2026
mse:0.20340222120285034, mae:0.2522512376308441
Solar_336_96_CycleNet_Solar_ftM_sl336_pl96_cycle144_linear_seed2027
mse:0.19844624400138855, mae:0.24597769975662231
Solar_336_96_CycleNet_Solar_ftM_sl336_pl96_cycle144_linear_seed2028
mse:0.1981971114873886, mae:0.24540458619594574
Solar_336_192_CycleNet_Solar_ftM_sl336_pl192_cycle144_linear_seed2024
mse:0.21783651411533356, mae:0.2596975862979889
Solar_336_192_CycleNet_Solar_ftM_sl336_pl192_cycle144_linear_seed2025
mse:0.2192741334438324, mae:0.25640109181404114
Solar_336_192_CycleNet_Solar_ftM_sl336_pl192_cycle144_linear_seed2026
mse:0.2184319794178009, mae:0.25921526551246643
Solar_336_192_CycleNet_Solar_ftM_sl336_pl192_cycle144_linear_seed2027
mse:0.22145600616931915, mae:0.25840920209884644
Solar_336_192_CycleNet_Solar_ftM_sl336_pl192_cycle144_linear_seed2028
mse:0.23141099512577057, mae:0.2723657786846161
Solar_336_336_CycleNet_Solar_ftM_sl336_pl336_cycle144_linear_seed2024
mse:0.23707237839698792, mae:0.2630127966403961
Solar_336_336_CycleNet_Solar_ftM_sl336_pl336_cycle144_linear_seed2025
mse:0.24313949048519135, mae:0.28821465373039246
Solar_336_336_CycleNet_Solar_ftM_sl336_pl336_cycle144_linear_seed2026
mse:0.23071536421775818, mae:0.27375078201293945
Solar_336_336_CycleNet_Solar_ftM_sl336_pl336_cycle144_linear_seed2027
mse:0.2391781508922577, mae:0.2772461175918579
Solar_336_336_CycleNet_Solar_ftM_sl336_pl336_cycle144_linear_seed2028
mse:0.23201532661914825, mae:0.26277413964271545
Solar_336_720_CycleNet_Solar_ftM_sl336_pl720_cycle144_linear_seed2024
mse:0.24498434364795685, mae:0.2734469473361969
Solar_336_720_CycleNet_Solar_ftM_sl336_pl720_cycle144_linear_seed2025
mse:0.24213120341300964, mae:0.27935001254081726
Solar_336_720_CycleNet_Solar_ftM_sl336_pl720_cycle144_linear_seed2026
mse:0.2535930573940277, mae:0.2864398956298828
Solar_336_720_CycleNet_Solar_ftM_sl336_pl720_cycle144_linear_seed2027
mse:0.24599197506904602, mae:0.28476008772850037
Solar_336_720_CycleNet_Solar_ftM_sl336_pl720_cycle144_linear_seed2028
mse:0.23961839079856873, mae:0.26450204849243164
ETTh1_720_96_CycleNet_ETTh1_ftM_sl720_pl96_cycle24_linear_seed2024
mse:0.38159671425819397, mae:0.4050658047199249
ETTh1_720_96_CycleNet_ETTh1_ftM_sl720_pl96_cycle24_linear_seed2025
mse:0.37759149074554443, mae:0.4015161097049713
ETTh1_720_96_CycleNet_ETTh1_ftM_sl720_pl96_cycle24_linear_seed2026
mse:0.3799045979976654, mae:0.40370243787765503
ETTh1_720_96_CycleNet_ETTh1_ftM_sl720_pl96_cycle24_linear_seed2027
mse:0.3804037570953369, mae:0.40407538414001465
ETTh1_720_96_CycleNet_ETTh1_ftM_sl720_pl96_cycle24_linear_seed2028
mse:0.3776024878025055, mae:0.4014255106449127
ETTh1_720_192_CycleNet_ETTh1_ftM_sl720_pl192_cycle24_linear_seed2024
mse:0.41858091950416565, mae:0.4279029071331024
ETTh1_720_192_CycleNet_ETTh1_ftM_sl720_pl192_cycle24_linear_seed2025
mse:0.4170192778110504, mae:0.4264737665653229
ETTh1_720_192_CycleNet_ETTh1_ftM_sl720_pl192_cycle24_linear_seed2026
mse:0.4143056273460388, mae:0.4239436388015747
ETTh1_720_192_CycleNet_ETTh1_ftM_sl720_pl192_cycle24_linear_seed2027
mse:0.4155045449733734, mae:0.42485904693603516
ETTh1_720_192_CycleNet_ETTh1_ftM_sl720_pl192_cycle24_linear_seed2028
mse:0.4152633845806122, mae:0.4252786934375763
ETTh1_720_336_CycleNet_ETTh1_ftM_sl720_pl336_cycle24_linear_seed2024
mse:0.4499814510345459, mae:0.4469659924507141
ETTh1_720_336_CycleNet_ETTh1_ftM_sl720_pl336_cycle24_linear_seed2025
mse:0.44676876068115234, mae:0.4449814558029175
ETTh1_720_336_CycleNet_ETTh1_ftM_sl720_pl336_cycle24_linear_seed2026
mse:0.4455919861793518, mae:0.4437824487686157
ETTh1_720_336_CycleNet_ETTh1_ftM_sl720_pl336_cycle24_linear_seed2027