"Biased resampling strategies for imbalanced spatio-temporal forecasting" -- DSAA 2019
This repository contains the research compendium of the conference article:
Oliveira, M., Moniz, N., Torgo, L., & Costa, V. S. (2019, October). Biased Resampling Strategies for Imbalanced Spatio-Temporal Forecasting. In 2019 IEEE International Conference on Data Science and Advanced Analytics (DSAA) (pp. 100-109). IEEE. doi: 10.1109/DSAA.2019.00024
BibTeX citation:
@inproceedings{Oliveira2019, author = {Mariana Oliveira and Nuno Moniz and Lu{\’{\i}}s Torgo and V{\’{\i}}tor Santos Costa}, editor = {Lisa Singh and Richard D. De Veaux and George Karypis and Francesco Bonchi and Jennifer Hill}, title = {Biased Resampling Strategies for Imbalanced Spatio-Temporal Forecasting}, booktitle = {2019 {IEEE} International Conference on Data Science and Advanced Analytics, {DSAA} 2019, Washington, DC, USA, October 5-8, 2019}, pages = {100—109}, publisher = {{IEEE}}, year = {2019}, url = {https://doi.org/10.1109/DSAA.2019.00024}, doi = {10.1109/DSAA.2019.00024}}
You are free to use and/or adapt the code we freely provide. However, we do require that if you do that you cite the paper where these results and code were published.
If you adapt the code to your own needs, you are also required to maintain information on your code concerning the original source of the code (e.g. the URL of this repository) and a reference to the original paper.
Other supplementary material (e.g., PDF of post-print, slides of conference presentation) available at https://www.dcc.fc.up.pt/~moliveira/publication/19-dsaa-biased-resampling-spatiotemporal/.
In Section IV.B2 of the article, we report that the sets of parameters tested in Section V are u ∈ {.2, .4, .6, .8, .95} and o ∈ {.5, 1, 2, 3, 4}. In fact, the results reported in Sections V.A and V.B for Internally Tuned Parameters were obtained with u ∈ {.1, .2, .3, .4, .5, .6, .7, .8, .9} and o ∈ {.1, .2, .3, .4, .5, .6, .7, .8, .9, 1, 2}. The results of running the internal tuning experiments with the initially reported sets of parameters does not alter the conclusions of our work.
To install this package, run:
library(devtools) # You need to install this package!
install_github("mrfoliveira/STResampling-DSAA2019",ref="master")
If this previous install_github calls somehow fail (there are reports of problems with different libcurl library version on Linux hosts) you may try in alternative the following in R:
library(devtools)
install_git("mrfoliveira/STResampling-DSAA2019",ref="master")
To obtain all results shown in the article, run the following lines from the package directory:
library(STResamplingDSAA)
PATH <- system.file("inst/", package="STResamplingDSAA")
source(paste0(PATH, "/generate_inds.R"))
source(paste0(PATH, "/exps_internalTuning.R"))
source(paste0(PATH, "/exps_externalPrequential.R"))
To generate an HTML report containing all figures and tables in the article, run:
library(STResamplingDSAA)
knitr::knit(system.file("inst/notebook.Rmd", package="STResamplingDSAA"))
The repository is organized as follows: