-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreference.bib
More file actions
executable file
·3789 lines (3437 loc) · 118 KB
/
reference.bib
File metadata and controls
executable file
·3789 lines (3437 loc) · 118 KB
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
% Generated by Paperpile. Check out https://paperpile.com for more information.
% BibTeX export options can be customized via Settings -> BibTeX.
@INPROCEEDINGS{Grecov2021-ws,
title = "Causal Inference Using Global Forecasting Models for
Counterfactual Prediction",
booktitle = "Advances in Knowledge Discovery and Data Mining",
author = "Grecov, Priscila and Bandara, Kasun and Bergmeir, Christoph and
Ackermann, Klaus and Campbell, Sam and Scott, Deborah and
Lubman, Dan",
publisher = "Springer International Publishing",
pages = "282-294",
year = 2021
}
@MISC{Bergmeir2020-nu,
title = "{ACML} 2020 Tutorial: Forecasting for Data Scientists",
author = "Bergmeir, C",
year = 2020,
howpublished = "\url{https://cbergmeir.com/talks/acml-tutorial/}",
note = "Accessed: 2021-8-29"
}
@ARTICLE{Godahewa2020-wg,
title = "A Strong Baseline for Weekly Time Series Forecasting",
author = "Godahewa, Rakshitha and Bergmeir, C and Webb, Geoffrey I and
Montero-Manso, Pablo",
journal = "ArXiv",
year = 2020
}
@ARTICLE{Lim2021-il,
title = "Temporal Fusion Transformers for interpretable multi-horizon time
series forecasting",
author = "Lim, Bryan and Ar{\i}k, Sercan {\"O} and Loeff, Nicolas and
Pfister, Tomas",
journal = "Int. J. Forecast.",
month = jun,
year = 2021
}
@INPROCEEDINGS{Li2019-io,
title = "Enhancing the Locality and Breaking the Memory Bottleneck of
Transformer on Time Series Forecasting",
booktitle = "Advances in Neural Information Processing Systems",
author = "Li, Shiyang and Jin, Xiaoyong and Xuan, Yao and Zhou, Xiyou and
Chen, Wenhu and Wang, Yu-Xiang and Yan, Xifeng",
editor = "Wallach, H and Larochelle, H and Beygelzimer, A",
publisher = "Curran Associates, Inc.",
volume = 32,
year = 2019
}
@ARTICLE{Oreshkin2019-tq,
title = "{N-BEATS}: Neural basis expansion analysis for interpretable
time series forecasting",
author = "Oreshkin, Boris N and Carpov, Dmitri and Chapados, Nicolas
and Bengio, Yoshua",
month = may,
year = 2019,
archivePrefix = "arXiv",
primaryClass = "cs.LG",
eprint = "1905.10437"
}
@INPROCEEDINGS{Rangapuram2018-zq,
title = "Deep State Space Models for Time Series Forecasting",
booktitle = "Advances in Neural Information Processing Systems",
author = "Rangapuram, Syama Sundar and Seeger, Matthias W and Gasthaus,
Jan and Stella, Lorenzo and Wang, Yuyang and Januschowski, Tim",
editor = "Bengio, S and Wallach, H and Larochelle, H and Grauman, K and
Cesa-Bianchi, N and Garnett, R",
publisher = "Curran Associates, Inc.",
volume = 31,
year = 2018
}
@INPROCEEDINGS{Sen2019-jj,
title = "Think Globally, Act Locally: A Deep Neural Network Approach to
{High-Dimensional} Time Series Forecasting",
booktitle = "Advances in Neural Information Processing Systems",
author = "Sen, Rajat and Yu, Hsiang-Fu and Dhillon, Inderjit S",
editor = "Wallach, H and Larochelle, H and Beygelzimer",
publisher = "Curran Associates, Inc.",
volume = 32,
year = 2019
}
@ARTICLE{Salinas2020-dz,
title = "{DeepAR}: Probabilistic forecasting with autoregressive recurrent
networks",
author = "Salinas, David and Flunkert, Valentin and Gasthaus, Jan and
Januschowski, Tim",
journal = "Int. J. Forecast.",
volume = 36,
number = 3,
pages = "1181-1191",
month = jul,
year = 2020
}
@ARTICLE{Hewamalage2021-hg,
title = "Recurrent Neural Networks for Time Series Forecasting: Current
status and future directions",
author = "Hewamalage, Hansika and Bergmeir, Christoph and Bandara, Kasun",
journal = "Int. J. Forecast.",
volume = 37,
number = 1,
pages = "388-427",
month = jan,
year = 2021
}
@ARTICLE{Makridakis2021-ro,
title = "The {M5} Competition and the Future of Human Expertise in
Forecasting",
author = "Makridakis, Spyros and Spiliotis, Evangelos",
journal = "Foresight: The International Journal of Applied Forecasting",
publisher = "International Institute of Forecasters",
number = 60,
pages = "33-37",
year = 2021
}
@MISC{Suilin2018-tc,
title = "kaggle-web-traffic",
author = "Suilin, A",
year = 2018,
howpublished = "\url{https://github.com/Arturus/kaggle-web-traffic}",
note = "Accessed: 2020-2-10"
}
@ARTICLE{Montero-Manso2021-es,
title = "Principles and algorithms for forecasting groups of time series:
Locality and globality",
author = "Montero-Manso, Pablo and Hyndman, Rob J",
journal = "Int. J. Forecast.",
month = jun,
year = 2021
}
@MANUAL{R_Core_Team2013-bo,
title = "R: A Language and Environment for Statistical Computing",
author = "{R Core Team}",
year = 2013,
address = "Vienna, Austria",
organization = "R Foundation for Statistical Computing"
}
@INPROCEEDINGS{He2016-wm,
title = "Deep Residual Learning for Image Recognition",
booktitle = "2016 {IEEE} Conference on Computer Vision and Pattern
Recognition ({CVPR})",
author = "He, K and Zhang, X and Ren, S and Sun, J",
pages = "770-778",
month = jun,
year = 2016
}
@ARTICLE{Fawaz2018-dq,
title = "Data augmentation using synthetic data for time series
classification with deep residual networks",
author = "Fawaz, Hassan Ismail and Forestier, Germain and Weber,
Jonathan and Idoumghar, Lhassane and Muller, Pierre-Alain",
month = aug,
year = 2018,
archivePrefix = "arXiv",
primaryClass = "cs.CV",
eprint = "1808.02455"
}
@ARTICLE{Kang2019-dy,
title = "{GRATIS}: {GeneRAting} {TIme} Series with diverse and
controllable characteristics",
author = "Kang, Yanfei and Hyndman, Rob J and Li, Feng",
month = mar,
year = 2019,
archivePrefix = "arXiv",
primaryClass = "stat.ML",
eprint = "1903.02787"
}
@ARTICLE{Almonacid2013-ot,
title = "Generation of ambient temperature hourly time series for some
Spanish locations by artificial neural networks",
author = "Almonacid, F and P{\'e}rez-Higueras, P and Rodrigo, P and
Hontoria, L",
journal = "Renewable Energy",
volume = 51,
pages = "285-291",
month = mar,
year = 2013
}
@INPROCEEDINGS{Iftikhar2017-wy,
title = "A Scalable Smart Meter Data Generator Using Spark",
booktitle = "On the Move to Meaningful Internet Systems. {OTM} 2017
Conferences",
author = "Iftikhar, Nadeem and Liu, Xiufeng and Danalachi, Sergiu and
Nordbjerg, Finn Ebertsen and Vollesen, Jens Henrik",
publisher = "Springer International Publishing",
pages = "21-36",
year = 2017
}
@INPROCEEDINGS{Kegel2018-rs,
title = "Feature-based comparison and generation of time series",
booktitle = "Proceedings of the 30th International Conference on
Scientific and Statistical Database Management - {SSDBM}
'18",
author = "Kegel, Lars and Hahmann, Martin and Lehner, Wolfgang",
publisher = "ACM Press",
pages = "1-12",
year = 2018,
address = "New York, New York, USA",
conference = "the 30th International Conference",
location = "Bozen-Bolzano, Italy"
}
@ARTICLE{Hewamalage2019-ko,
title = "Recurrent neural networks for time series forecasting: Current
status and future directions",
author = "Hewamalage, H and Bergmeir, C and Bandara, K",
journal = "arXiv preprint arXiv:1909.00590",
publisher = "arxiv.org",
year = 2019
}
@INPROCEEDINGS{Bandara2015-jn,
title = "Towards optimising {Wi-Fi} energy consumption in mobile phones:
A data driven approach",
booktitle = "2015 Fifteenth International Conference on Advances in {ICT} for
Emerging Regions ({ICTer})",
author = "Bandara, H M K G and Caldera, H A",
pages = "226-235",
month = aug,
year = 2015
}
@ARTICLE{Seth2007-on,
title = "Granger causality",
author = "Seth, Anil",
journal = "Scholarpedia J.",
volume = 2,
number = 7,
pages = "1667",
year = 2007
}
@ARTICLE{Granger1980-xw,
title = "Testing for causality: A personal viewpoint",
author = "Granger, C W J",
journal = "J. Econ. Dyn. Control",
volume = 2,
pages = "329-352",
month = jan,
year = 1980
}
@ARTICLE{Dan_I_Lubman_Sharon_Matthews_Cherie_Heilbronn_Jessica_J_Killian_Rowan_P_Ogeil_Belinda_Lloyd_Katrina_Witt_Rose_CrossinKaren_Smith_Emma_Bosley_Rosemary_Carney_Alex_Wilson_Matthew_Eastham_Toby_Keene_Carol_Shipp_Debbie_Scott2020-nw,
title = "The National Ambulance Surveillance System: A novel method
surveillance system for monitoring acute alcohol, illicit and
pharmaceutical drug-related harms using coded Australian ambulance
clinical records",
author = "{Dan I. Lubman, Sharon Matthews, Cherie Heilbronn, Jessica J.
Killian Rowan P. Ogeil, Belinda Lloyd, Katrina Witt, Rose
Crossin,Karen Smith, Emma Bosley, Rosemary Carney, Alex Wilson,
Matthew Eastham, Toby Keene, Carol Shipp, Debbie Scott}",
journal = "PLoS One",
year = 2020
}
@ARTICLE{Bandara2019-si,
title = "{LSTM-MSNet}: Leveraging Forecasts on Sets of Related Time
Series with Multiple Seasonal Patterns",
author = "Bandara, K and Bergmeir, C and Hewamalage, H",
journal = "arXiv preprint arXiv:1909.04293",
publisher = "arxiv.org",
year = 2019
}
@ARTICLE{Granger1980-om,
title = "{AN} {INTRODUCTION} {TO} {LONG-MEMORY} {TIME} {SERIES} {MODELS}
{AND} {FRACTIONAL} {DIFFERENCING}",
author = "Granger, C W J and Joyeux, Roselyne",
journal = "J. Time Ser. Anal.",
volume = 1,
number = 1,
pages = "15-29",
month = jan,
year = 1980
}
@ARTICLE{Lemmens2008-oo,
title = "Measuring and testing Granger causality over the spectrum: An
application to European production expectation surveys",
author = "Lemmens, Aur{\'e}lie and Croux, Christophe and Dekimpe, Marnik G",
journal = "Int. J. Forecast.",
publisher = "Elsevier",
volume = 24,
number = 3,
pages = "414-431",
month = jul,
year = 2008
}
@ARTICLE{Zanias1994-wy,
title = "The long run, causality, and forecasting in the
advertising-sales relationship",
author = "Zanias, George P",
journal = "J. Forecast.",
publisher = "Wiley Online Library",
volume = 13,
number = 7,
pages = "601-610",
year = 1994
}
@ARTICLE{Narayan2005-kq,
title = "Electricity consumption, employment and real income in Australia
evidence from multivariate Granger causality tests",
author = "Narayan, Paresh Kumar and Smyth, Russell",
journal = "Energy Policy",
publisher = "Elsevier",
volume = 33,
number = 9,
pages = "1109-1116",
month = jun,
year = 2005
}
@INPROCEEDINGS{Bandara2019-bg,
title = "Sales Demand Forecast in E-commerce Using a Long {Short-Term}
Memory Neural Network Methodology",
booktitle = "Neural Information Processing",
author = "Bandara, Kasun and Shi, Peibei and Bergmeir, Christoph and
Hewamalage, Hansika and Tran, Quoc and Seaman, Brian",
publisher = "Springer International Publishing",
pages = "462-474",
year = 2019
}
@INPROCEEDINGS{Zhou2015-cx,
title = "Predicting Ambulance Demand: A {Spatio-Temporal} Kernel Approach",
booktitle = "Proceedings of the 21th {ACM} {SIGKDD} International Conference
on Knowledge Discovery and Data Mining",
author = "Zhou, Zhengyi and Matteson, David S",
publisher = "ACM",
pages = "2297-2303",
series = "KDD '15",
year = 2015,
address = "New York, NY, USA",
location = "Sydney, NSW, Australia"
}
@PHDTHESIS{Zhou2015-sa,
title = "Predicting Ambulance Demand",
author = "Zhou, Zhengyi",
month = aug,
year = 2015
}
@ARTICLE{Zhou2015-ic,
title = "A {Spatio-Temporal} Point Process Model for Ambulance Demand",
author = "Zhou, Zhengyi and Matteson, David S and Woodard, Dawn B and
Henderson, Shane G and Micheas, Athanasios C",
journal = "J. Am. Stat. Assoc.",
publisher = "Taylor \& Francis",
volume = 110,
number = 509,
pages = "6-15",
month = jan,
year = 2015
}
@ARTICLE{Matteson2011-zn,
title = "Forecasting emergency medical service call arrival rates",
author = "Matteson, David S and McLean, Mathew W and Woodard, Dawn B and
Henderson, Shane G",
journal = "Ann. Appl. Stat.",
publisher = "Institute of Mathematical Statistics",
volume = 5,
number = "2B",
pages = "1379-1406",
month = jun,
year = 2011,
language = "en"
}
@ARTICLE{Wong2014-ok,
title = "Weather factors in the short-term forecasting of daily ambulance
calls",
author = "Wong, Ho-Ting and Lai, Poh-Chin",
journal = "Int. J. Biometeorol.",
volume = 58,
number = 5,
pages = "669-678",
month = jul,
year = 2014,
language = "en"
}
@ARTICLE{Brown2007-ij,
title = "Are {EMS} call volume predictions based on demand pattern
analysis accurate?",
author = "Brown, Lawrence H and Lerner, E Brooke and Larmon, Baxter and
LeGassick, Todd and Taigman, Michael",
journal = "Prehosp. Emerg. Care",
volume = 11,
number = 2,
pages = "199-203",
month = apr,
year = 2007,
language = "en"
}
@ARTICLE{Mabert1985-ip,
title = "Short interval forecasting of emergency phone call (911) work
loads",
author = "Mabert, Vincent A",
journal = "J. Oper. Manage.",
volume = 5,
number = 3,
pages = "259-271",
month = may,
year = 1985
}
@ARTICLE{Baker1986-vk,
title = "Determination of an optimal forecast model for ambulance demand
using goal programming",
author = "Baker, J R and Fitzpatrick, K E",
journal = "J. Oper. Res. Soc.",
volume = 37,
number = 11,
pages = "1047-1059",
month = nov,
year = 1986,
language = "en"
}
@ARTICLE{Jones2009-gj,
title = "A multivariate time series approach to modeling and forecasting
demand in the emergency department",
author = "Jones, Spencer S and Evans, R Scott and Allen, Todd L and Thomas,
Alun and Haug, Peter J and Welch, Shari J and Snow, Gregory L",
journal = "J. Biomed. Inform.",
volume = 42,
number = 1,
pages = "123-139",
month = feb,
year = 2009,
language = "en"
}
@ARTICLE{Grekousis2019-bs,
title = "Where will the next emergency event occur? Predicting ambulance
demand in emergency medical services using artificial intelligence",
author = "Grekousis, George and Liu, Ye",
journal = "Comput. Environ. Urban Syst.",
volume = 76,
pages = "110-122",
month = jul,
year = 2019
}
@ARTICLE{Cadigan1989-sm,
title = "Predicting demand for emergency ambulance service",
author = "Cadigan, R T and Bugarin, C E",
journal = "Ann. Emerg. Med.",
volume = 18,
number = 6,
pages = "618-621",
month = jun,
year = 1989,
language = "en"
}
@ARTICLE{Setzler2009-km,
title = "{EMS} call volume predictions: A comparative study",
author = "Setzler, Hubert and Saydam, Cem and Park, Sungjune",
journal = "Comput. Oper. Res.",
volume = 36,
number = 6,
pages = "1843-1851",
month = jun,
year = 2009
}
@ARTICLE{Vile2012-bq,
title = "Predicting ambulance demand using singular spectrum analysis",
author = "Vile, J L and Gillard, J W and Harper, P R and Knight, V A",
journal = "J. Oper. Res. Soc.",
volume = 63,
number = 11,
pages = "1556-1565",
month = nov,
year = 2012
}
@ARTICLE{Chen2016-ka,
title = "Demand Forecast Using Data Analytics for the Preallocation of
Ambulances",
author = "Chen, A Y and Lu, T and Ma, M H and Sun, W",
journal = "IEEE Journal of Biomedical and Health Informatics",
volume = 20,
number = 4,
pages = "1178-1187",
month = jul,
year = 2016
}
@INPROCEEDINGS{Steins2019-eu,
title = "Forecasting the Demand for Emergency Medical Services",
booktitle = "the 52nd Hawaii International Conference on System Sciences,
2019, January 8-11, Grand Wailea, Maui, Hawai'i",
author = "Steins, Krisjanis and Matinrad, Niki and Andersson Granberg,
Tobias",
publisher = "University of Hawai'i at Manoa",
pages = "1855-1864",
year = 2019,
language = "en"
}
@ARTICLE{Channouf2007-vw,
title = "The application of forecasting techniques to modeling emergency
medical system calls in Calgary, Alberta",
author = "Channouf, Nabil and Ecuyer, Pierre and Ingolfsson, Armann and
Avramidis, Athanassios N",
journal = "Health Care Manag. Sci.",
volume = 10,
number = 1,
pages = "25-45",
month = feb,
year = 2007,
language = "en"
}
@ARTICLE{Matteson2011-lv,
title = "Forecasting emergency medical service call arrival rates",
author = "Matteson, David S and McLean, Mathew W and Woodard, Dawn B
and Henderson, Shane G",
month = jul,
year = 2011,
archivePrefix = "arXiv",
primaryClass = "stat.AP",
eprint = "1107.4919"
}
@ARTICLE{Zhou2015-hq,
title = "Predicting Melbourne Ambulance Demand using Kernel Warping",
author = "Zhou, Zhengyi and Matteson, David S",
month = jul,
year = 2015,
archivePrefix = "arXiv",
primaryClass = "stat.AP",
eprint = "1507.00363"
}
@ARTICLE{Zhou2015-kw,
title = "Predicting Ambulance Demand: a {Spatio-Temporal} Kernel
Approach",
author = "Zhou, Zhengyi and Matteson, David S",
month = jul,
year = 2015,
archivePrefix = "arXiv",
primaryClass = "stat.AP",
eprint = "1507.00364"
}
@ARTICLE{Zhou2016-ck,
title = "Predicting Ambulance Demand: Challenges and Methods",
author = "Zhou, Zhengyi",
month = jun,
year = 2016,
archivePrefix = "arXiv",
primaryClass = "stat.ML",
eprint = "1606.05363"
}
@ARTICLE{Walsh2017-dv,
title = "Predicting Risk of Suicide Attempts Over Time Through Machine
Learning",
author = "Walsh, Colin G and Ribeiro, Jessica D and Franklin, Joseph C",
journal = "Clin. Psychol. Sci.",
publisher = "SAGE Publications Inc",
volume = 5,
number = 3,
pages = "457-469",
month = may,
year = 2017
}
@INCOLLECTION{Cho2014-or,
title = "Learning phrase representations using {RNN} encoder-decoder for
statistical machine translation",
booktitle = "Conference on Empirical Methods in Natural Language Processing
({EMNLP} 2014)",
author = "Cho, Kyunghyun and van Merrienboer, B and Gulcehre, Caglar and
Bougares, F and Schwenk, H and Bengio, Yoshua",
year = 2014
}
@ARTICLE{Yu2015-hj,
title = "High-dimensional Time Series Prediction with Missing Values",
author = "Yu, Hsiang-Fu and Rao, Nikhil and Dhillon, Inderjit S",
month = sep,
year = 2015,
archivePrefix = "arXiv",
primaryClass = "cs.LG",
eprint = "1509.08333"
}
@ARTICLE{Fernando2018-cx,
title = "Tree Memory Networks for modelling long-term temporal dependencies",
author = "Fernando, Tharindu and Denman, Simon and McFadyen, Aaron and
Sridharan, Sridha and Fookes, Clinton",
journal = "Neurocomputing",
volume = 304,
pages = "64-81",
month = aug,
year = 2018
}
@ARTICLE{Fernando2017-qc,
title = "Tree Memory Networks for Modelling Long-term Temporal
Dependencies",
author = "Fernando, Tharindu and Denman, Simon and McFadyen, Aaron and
Sridharan, Sridha and Fookes, Clinton",
month = mar,
year = 2017,
archivePrefix = "arXiv",
primaryClass = "cs.LG",
eprint = "1703.04706"
}
@ARTICLE{Du2013-db,
title = "Unsupervised transfer learning for target detection from
hyperspectral images",
author = "Du, Bo and Zhang, Liangpei and Tao, Dacheng and Zhang, Dengyi",
journal = "Neurocomputing",
publisher = "Elsevier",
volume = 120,
pages = "72-82",
month = nov,
year = 2013
}
@ARTICLE{Yu2017-dm,
title = "Deep Transfer Learning for Modality Classification of Medical
Images",
author = "Yu, Yuhai and Lin, Hongfei and Meng, Jiana and Wei, Xiaocong and
Guo, Hai and Zhao, Zhehuan",
journal = "Information",
publisher = "Multidisciplinary Digital Publishing Institute",
volume = 8,
number = 3,
pages = "91",
month = jul,
year = 2017,
language = "en"
}
@ARTICLE{Yang2017-sp,
title = "Transfer Learning for Sequence Tagging with Hierarchical
Recurrent Networks",
author = "Yang, Zhilin and Salakhutdinov, Ruslan and Cohen, William W",
month = mar,
year = 2017,
archivePrefix = "arXiv",
primaryClass = "cs.CL",
eprint = "1703.06345"
}
@INPROCEEDINGS{Ramachandran2017-px,
title = "Unsupervised Pretraining for Sequence to Sequence Learning",
booktitle = "Proceedings of the 2017 Conference on Empirical Methods in
Natural Language Processing",
author = "Ramachandran, Prajit and Liu, Peter J and Le, Quoc",
pages = "383-391",
year = 2017
}
@ARTICLE{Shin2016-zd,
title = "Generative Knowledge Transfer for Neural Language Models",
author = "Shin, Sungho and Hwang, Kyuyeon and Sung, Wonyong",
month = aug,
year = 2016,
archivePrefix = "arXiv",
primaryClass = "cs.LG",
eprint = "1608.04077"
}
@INPROCEEDINGS{Bengio2012-tr,
title = "Deep Learning of Representations for Unsupervised and Transfer
Learning",
booktitle = "Proceedings of {ICML} Workshop on Unsupervised and Transfer
Learning",
author = "Bengio, Yoshua",
editor = "Guyon, Isabelle and Dror, Gideon and Lemaire, Vincent and
Taylor, Graham and Silver, Daniel",
publisher = "PMLR",
volume = 27,
pages = "17-36",
series = "Proceedings of Machine Learning Research",
year = 2012,
address = "Bellevue, Washington, USA"
}
@INPROCEEDINGS{Purushotham2017-sz,
title = "Variational Recurrent Adversarial Deep Domain Adaptation",
booktitle = "{ICLR}",
author = "Purushotham, Sanjay and Carvalho, Wilka and Nilanon, Tanachat
and Liu, Yan",
year = 2017
}
@ARTICLE{Januschowski2020-ud,
title = "Criteria for classifying forecasting methods",
author = "Januschowski, Tim and Gasthaus, Jan and Wang, Yuyang and Salinas,
David and Flunkert, Valentin and Bohlke-Schneider, Michael and
Callot, Laurent",
journal = "Int. J. Forecast.",
volume = 36,
number = 1,
pages = "167-177",
month = jan,
year = 2020
}
@ARTICLE{Pan2010-fi,
title = "A Survey on Transfer Learning",
author = "Pan, S J and Yang, Q",
journal = "IEEE Trans. Knowl. Data Eng.",
volume = 22,
number = 10,
pages = "1345-1359",
month = oct,
year = 2010
}
@INPROCEEDINGS{He2019-eh,
title = "Transfer Learning for Financial Time Series Forecasting",
booktitle = "{PRICAI} 2019: Trends in Artificial Intelligence",
author = "He, Qi-Qiao and Pang, Patrick Cheong-Iao and Si, Yain-Whar",
publisher = "Springer International Publishing",
pages = "24-36",
year = 2019
}
@ARTICLE{Hu2016-qv,
title = "Transfer learning for short-term wind speed prediction with deep
neural networks",
author = "Hu, Qinghua and Zhang, Rujia and Zhou, Yucan",
journal = "Renewable Energy",
publisher = "Elsevier",
volume = 85,
number = "C",
pages = "83-95",
year = 2016
}
@INPROCEEDINGS{Rosenstein2005-cw,
title = "To transfer or not to transfer",
booktitle = "In {NIPS'05} Workshop, Inductive Transfer: 10 Years Later",
author = "Rosenstein, Michael T and Marx, Zvika and Kaelbling, Leslie Pack
and Dietterich, Thomas G",
year = 2005
}
@ARTICLE{Gupta2018-no,
title = "Transfer Learning for Clinical Time Series Analysis using
Recurrent Neural Networks",
author = "Gupta, Priyanka and Malhotra, Pankaj and Vig, Lovekesh and
Shroff, Gautam",
month = jul,
year = 2018,
archivePrefix = "arXiv",
primaryClass = "cs.LG",
eprint = "1807.01705"
}
@ARTICLE{Lin2018-og,
title = "Transfer Learning for Traffic Speed Prediction: A Preliminary
Study",
author = "Lin, B Y and Xu, F F and Liao, E Q and Zhu, K Q",
journal = "Workshops at the Thirty-Second AAAI",
publisher = "aaai.org",
year = 2018
}
@ARTICLE{Lin_undated-hf,
title = "Transfer Learning for Traffic Speed Prediction with Effective
Spatiotemporal Features",
author = "Lin, Bill Y and Xu, Frank F and Liao, Eve Q and Zhu, Kenny Q"
}
@ARTICLE{Ribeiro2018-aa,
title = "Transfer learning with seasonal and trend adjustment for
cross-building energy forecasting",
author = "Ribeiro, Mauro and Grolinger, Katarina and ElYamany, Hany F and
Higashino, Wilson A and Capretz, Miriam A M",
journal = "Energy Build.",
volume = 165,
pages = "352-363",
month = apr,
year = 2018
}
@ARTICLE{Ye2018-ex,
title = "A novel transfer learning framework for time series forecasting",
author = "Ye, Rui and Dai, Qun",
journal = "Knowledge-Based Systems",
volume = 156,
pages = "74-99",
month = sep,
year = 2018
}
@ARTICLE{Ye2018-yf,
title = "A novel transfer learning framework for time series forecasting",
author = "Ye, Rui and Dai, Qun",
journal = "Knowledge-Based Systems",
volume = 156,
pages = "74-99",
month = sep,
year = 2018
}
@ARTICLE{Ribeiro2018-di,
title = "Transfer learning with seasonal and trend adjustment for
cross-building energy forecasting",
author = "Ribeiro, Mauro and Grolinger, Katarina and ElYamany, Hany F and
Higashino, Wilson A and Capretz, Miriam A M",
journal = "Energy Build.",
volume = 165,
pages = "352-363",
month = apr,
year = 2018
}
@ARTICLE{Ribeiro2018-tm,
title = "Transfer learning with seasonal and trend adjustment for
cross-building energy forecasting",
author = "Ribeiro, Mauro and Grolinger, Katarina and ElYamany, Hany F and
Higashino, Wilson A and Capretz, Miriam A M",
journal = "Energy Build.",
volume = 165,
pages = "352-363",
month = apr,
year = 2018
}
@ARTICLE{Yoon2017-tf,
title = "Efficient Transfer Learning Schemes for Personalized
Language Modeling using Recurrent Neural Network",
author = "Yoon, Seunghyun and Yun, Hyeongu and Kim, Yuna and Park,
Gyu-Tae and Jung, Kyomin",
month = jan,
year = 2017,
archivePrefix = "arXiv",
primaryClass = "cs.CL",
eprint = "1701.03578"
}
@INCOLLECTION{Yosinski2014-xz,
title = "How transferable are features in deep neural networks?",
booktitle = "Advances in Neural Information Processing Systems 27",
author = "Yosinski, Jason and Clune, Jeff and Bengio, Yoshua and Lipson,
Hod",
editor = "Ghahramani, Z and Welling, M and Cortes, C and Lawrence, N D and
Weinberger, K Q",
publisher = "Curran Associates, Inc.",
pages = "3320-3328",
year = 2014
}
@INPROCEEDINGS{Glorot2011-kp,
title = "Domain Adaptation for Large-scale Sentiment Classification: A
Deep Learning Approach",
booktitle = "Proceedings of the 28th International Conference on
International Conference on Machine Learning",
author = "Glorot, Xavier and Bordes, Antoine and Bengio, Yoshua",
publisher = "Omnipress",
pages = "513-520",
series = "ICML'11",
year = 2011,
address = "USA",
location = "Bellevue, Washington, USA"
}
@ARTICLE{Pan2010-aq,
title = "A Survey on Transfer Learning",
author = "Pan, S J and Yang, Q",
journal = "IEEE Trans. Knowl. Data Eng.",
volume = 22,
number = 10,
pages = "1345-1359",
month = oct,
year = 2010
}
@ARTICLE{Laptev2018-kb,
title = "Reconstruction and Regression Loss for {Time-Series} Transfer
Learning",
author = "Laptev, Nikolay and Yu, Jiafan and Rajagopal, Ram",
journal = "SIGKDD",
year = 2018
}
@ARTICLE{Fawaz2018-qk,
title = "Transfer learning for time series classification",
author = "Fawaz, Hassan Ismail and Forestier, Germain and Weber,
Jonathan and Idoumghar, Lhassane and Muller, Pierre-Alain",
month = nov,
year = 2018,
archivePrefix = "arXiv",
primaryClass = "cs.LG",
eprint = "1811.01533"
}
@ARTICLE{Laptev_undated-bm,
title = "{APPLIED} {TIME-SERIES} {TRANSFER} {LEARNING}",
author = "Laptev, Nikolay and Yu, Jiafan and Rajagopal, Ram"
}
@BOOK{Makridakis2008-iy,
title = "Forecasting methods and applications",
author = "Makridakis, Spyros and Wheelwright, Steven C and Hyndman, Rob J",
publisher = "John wiley \& sons",
year = 2008
}
@INPROCEEDINGS{Hutter2011-wa,
title = "Sequential Model-based Optimization for General Algorithm
Configuration",
booktitle = "Proceedings of the 5th International Conference on Learning and
Intelligent Optimization",
author = "Hutter, Frank and Hoos, Holger H and Leyton-Brown, Kevin",
publisher = "Springer-Verlag",
pages = "507-523",
series = "LION'05",
year = 2011,
address = "Berlin, Heidelberg",
location = "Rome, Italy"
}
@INPROCEEDINGS{Orabona2017-ij,
title = "Training Deep Networks Without Learning Rates Through Coin
Betting",
booktitle = "Proceedings of the 31st International Conference on Neural
Information Processing Systems",
author = "Orabona, Francesco and Tommasi, Tatiana",
publisher = "Curran Associates Inc.",
pages = "2157-2167",
series = "NIPS'17",
year = 2017,
address = "USA",
location = "Long Beach, California, USA"
}
@ARTICLE{Wen2017-fs,
title = "A {Multi-Horizon} Quantile Recurrent Forecaster",
author = "Wen, Ruofeng and Torkkola, Kari and Narayanaswamy,
Balakrishnan and Madeka, Dhruv",
month = nov,
year = 2017,
archivePrefix = "arXiv",
primaryClass = "stat.ML",
eprint = "1711.11053"
}
@ARTICLE{Salinas2017-kx,
title = "{DeepAR}: Probabilistic Forecasting with Autoregressive
Recurrent Networks",
author = "Salinas, David and Flunkert, Valentin and Gasthaus, Jan",
month = apr,
year = 2017,
archivePrefix = "arXiv",
primaryClass = "cs.AI",
eprint = "1704.04110"
}
@ARTICLE{Borovykh2017-le,
title = "Conditional Time Series Forecasting with Convolutional
Neural Networks",
author = "Borovykh, Anastasia and Bohte, Sander and Oosterlee,
Cornelis W",
month = mar,
year = 2017,
archivePrefix = "arXiv",
primaryClass = "stat.ML",