https://github.com/gustavohfmo/sisc
Algorithms proposed in the following master dissertation: OLIVEIRA, Gustavo Henrique Ferreira de Miranda. Previsão de séries temporais na presença de mudança de conceito: uma abordagem baseada em PSO. 2018. Dissertação de Mestrado. Universidade Federal de Pernambuco.
https://github.com/gustavohfmo/sisc
concept-drift data-stream elm sisc-m sisc-p time-series
Last synced: about 1 month ago
JSON representation
Algorithms proposed in the following master dissertation: OLIVEIRA, Gustavo Henrique Ferreira de Miranda. Previsão de séries temporais na presença de mudança de conceito: uma abordagem baseada em PSO. 2018. Dissertação de Mestrado. Universidade Federal de Pernambuco.
- Host: GitHub
- URL: https://github.com/gustavohfmo/sisc
- Owner: GustavoHFMO
- License: gpl-3.0
- Created: 2024-06-09T14:58:14.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-09T15:23:20.000Z (over 1 year ago)
- Last Synced: 2025-01-21T17:09:41.118Z (about 1 year ago)
- Topics: concept-drift, data-stream, elm, sisc-m, sisc-p, time-series
- Language: Python
- Homepage: https://repositorio.ufpe.br/handle/123456789/29987
- Size: 9.52 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING.txt
Awesome Lists containing this project
README
# Dynamic Swarm Intelligence for Time Series Forecasting in the Presence of Concept Drift [[DOI]](https://doi.org/10.1007/s42979-025-04247-z)
## Usage
```
# Cloning the repository
git clone https://github.com/GustavoHFMO/SISC.git
# Acessing the repository
cd SISC
# Installing the dependencies
pip install -r requirements.txt
# Running the codes (Description bellow)
python generate_synthetic_series.py
python run_regressors.py
python run_online_algorithms.py
```
1. The module [generate_synthetic_series.py](https://github.com/GustavoHFMO/SISC/blob/main/generate_synthetic_series.py) explains how to generate the synthetic series used in the work. Result:

2. The module [run_regressors.py](https://github.com/GustavoHFMO/SISC/blob/main/run_regressors.py) shows how to run the following regressors trained by swarm algorithms: `IDPSO+ELM`, `PSO+ELM` and `PSO+MLP`. Result:

3. The module [run_online_algorithms.py](https://github.com/GustavoHFMO/SISC/blob/main/run_online_algorithms.py) explain how to executes the algorithms described below in real and synthetic time series.
## [SISC-P](https://github.com/GustavoHFMO/SISC/blob/main/algoritmos_online/SISC_P.py)
> OLIVEIRA, Gustavo HFM et al. Dynamic Swarm Intelligence for Time Series Forecasting in the Presence of Concept Drift. SN Computer Science, 2025.
## [SISC-M](https://github.com/GustavoHFMO/SISC/blob/main/algoritmos_online/SISC_M.py)
> OLIVEIRA, Gustavo HFM et al. Dynamic Swarm Intelligence for Time Series Forecasting in the Presence of Concept Drift. SN Computer Science, 2025.
## [IDPSO-ELM-S:](https://github.com/GustavoHFMO/SISC/blob/master/algoritmos_online/IDPSO_ELM_S.py)
> OLIVEIRA, Gustavo HFMO et al. Time series forecasting in the presence of concept drift: A pso-based approach. In: 2017 IEEE 29th International Conference on Tools with Artificial Intelligence (ICTAI). IEEE, 2017. p. 239-246.
## [IDPSO-ELM-B:](https://github.com/GustavoHFMO/SISC/blob/master/algoritmos_online/IDPSO_ELM_B.py)
> OLIVEIRA, Gustavo HFMO et al. Time series forecasting in the presence of concept drift: A pso-based approach. In: 2017 IEEE 29th International Conference on Tools with Artificial Intelligence (ICTAI). IEEE, 2017. p. 239-246.
## [ELM-FEDD:](https://github.com/GustavoHFMO/SISC/blob/master/algoritmos_online/ELM_FEDD.py)
> R. C. Cavalcante, L. L. Minku, and A. L. Oliveira, “FEDD: Feature Extraction for Explicit Concept Drift Detection in time series,” in Neural Networks (IJCNN), 2016 International Joint Conference on. IEEE, 2016, pp. 740–747.
## [ELM-ECDD:](https://github.com/GustavoHFMO/SISC/blob/master/algoritmos_online/ELM_ECDD.py)
> R. C. Cavalcante and A. L. Oliveira, “An approach to handle concept drift in financial time series based on extreme learning machines and explicit drift detection,” in Neural Networks (IJCNN), 2015 International Joint Conference on. IEEE, 2015, pp. 1–8.
## [ELM-DDM:](https://github.com/GustavoHFMO/SISC/blob/master/algoritmos_online/ELM_DDM.py)
> R. C. Cavalcante and A. L. Oliveira, “An approach to handle concept drift in financial time series based on extreme learning machines and explicit drift detection,” in Neural Networks (IJCNN), 2015 International Joint Conference on. IEEE, 2015, pp. 1–8.
## [RPSO-ELM:](https://github.com/GustavoHFMO/SISC/blob/main/algoritmos_online/RPSO_ELM.py)
> RAKITIANSKAIA, A. S.; ENGELBRECHT, A. P. Training feedforward neural networks with dynamic particle swarm optimisation. Swarm Intelligence, Springer, v. 6, n. 3, p. 233–270, 2012.

## License
This project is under a GNU General Public License (GPL) Version 3. See [LICENSE](https://www.gnu.org/licenses/gpl-3.0-standalone.html) for more information.