RFT and edRFT models for significant wave-height time-series forecasting.
Project description
A rich documentation is available in the GitHub repository.
edRFT: Deep Random Vector Functional Link Transformer Network
edRFT is a Python package for significant wave height forecasting using shallow and ensemble deep Random Vector Functional Link Transformer Network models with multiple output layers.
The package is developed for nonlinear time-series forecasting, ocean wave prediction, and regression problems where fast training, strong representation learning, and reliable forecast generation are important.
edRFT combines randomized neural feature mapping, transformer-inspired feature extraction, and efficient regularized output-layer learning.
This package provides two primary implementations:
- RFTRegressor: A randomized transformer-based forecasting model that converts input variables into nonlinear hidden representations and learns the output layer efficiently using regularized regression.
- EDRFTRegressor: A deeper ensemble model that stacks randomized transformer layers and uses multiple output layers. Different layers can capture different levels of information, and their predictions are combined to improve forecasting stability.
Key Features
- RFT and edRFT Models: Provides both a shallow randomized transformer model and a deeper ensemble version.
- Multiple Output Layers: edRFT learns layer-wise output readouts.
- Transformer-Inspired Feature Interaction: Helps capture nonlinear relationships among input variables.
- Efficient Training: Uses randomized hidden representations with regularized output-layer learning.
- Wave Forecasting: Designed for buoy-based significant wave height forecasting.
- Forecasting Utilities: Includes lag-window creation, scaling, chronological splitting, evaluation, and experiment helpers.
- Hyperparameter Tuning: Supports Hyperopt/TPE-based search.
Installation
Downloading locally and installing:
git clone https://github.com/statsdl/edRFT.git
cd edRFT
Install dependencies:
pip install -r requirements.txt
Install the package:
pip install -e .
Using pip install from GitHub:
pip install git+https://github.com/statsdl/edRFT.git
Using pip install from PyPI:
pip install edrft
Development installation:
pip install -e ".[dev]"
Usage
1. RFTRegressor
import numpy as np
from edrft import RFTRegressor
rng = np.random.default_rng(0)
X_train = rng.normal(size=(150, 6))
y_train = X_train[:, 0] - 0.3 * X_train[:, 1] + np.sin(X_train[:, 2])
model = RFTRegressor(n_hidden=64, random_state=0)
model.fit(X_train, y_train)
X_test = rng.normal(size=(20, 6))
y_pred = model.predict(X_test)
print("Predictions:", y_pred)
2. EDRFTRegressor
import numpy as np
from edrft import EDRFTRegressor, make_forecasting_frame
series = np.sin(np.linspace(0, 16, 240))
X, y = make_forecasting_frame(series, order=4, horizon=1)
X_train, y_train = X[:180], y[:180]
X_test = X[180:]
model = EDRFTRegressor(
n_layers=3,
n_hidden=32,
regularization=1e-3,
random_state=0,
)
model.fit(X_train, y_train)
y_pred = model.predict(X_test)
print("Forecasts:", y_pred[:5])
Wave Forecasting Example
python examples/run_wave_forecasting.py \
--data-dir wave \
--stations 46001h \
--years 2017 \
--look-back 48 \
--horizon 4 \
--layers 10 \
--max-evals 100
The workflow reports RMSE, MAPE, MASE, timing information, and selected hyperparameters.
API Reference
RFTRegressor
A randomized transformer-based regressor for regression and forecasting tasks.
Parameters
n_hidden(int): Number of hidden randomized features.regularization(float): Ridge regularization parameter.random_state(int): Random seed for reproducibility.
Methods
fit(X, y): Fits the model.predict(X): Predicts output values.
EDRFTRegressor
A deep ensemble randomized transformer model with multiple output layers.
Parameters
n_layers(int): Number of stacked randomized transformer layers.n_hidden(int): Number of hidden features per layer.regularization(float): Ridge regularization parameter.aggregation(str): Strategy for combining layer-wise predictions.random_state(int): Random seed for reproducibility.
Methods
fit(X, y): Fits the ensemble model.predict(X): Generates final forecasts.
Dataset Details
| Variable | Description |
|---|---|
WDIR |
Wind direction |
WSPD |
Wind speed |
GST |
Gust speed |
APD |
Average wave period |
WVHT |
Significant wave height |
License
This project is licensed under the MIT License. See the LICENSE file for details.
Citation
If you use this package in your research, please cite:
@article{bhambu2025deep,
title={Deep random vector functional link transformer network with multiple output layers for significant wave height forecasting},
author={Bhambu, Aryan and Gao, Ruobin and Suganthan, Ponnuthurai Nagaratnam and Selvaraju, Natarajan},
journal={Applied Soft Computing},
pages={114136},
year={2025},
publisher={Elsevier}
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file edrft-0.1.6.tar.gz.
File metadata
- Download URL: edrft-0.1.6.tar.gz
- Upload date:
- Size: 17.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cfb24448abe041b33fc738a71fd1ecb6423d55a7abd3e680c87190c27d93adb
|
|
| MD5 |
dc8bdf586513a8c107bf1edc276502b5
|
|
| BLAKE2b-256 |
8f9585be937192d57079939c946c1e5f64d2c89dc3b2dd7807a9aed1c695009c
|
Provenance
The following attestation bundles were made for edrft-0.1.6.tar.gz:
Publisher:
publish.yml on statsdl/edRFT
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edrft-0.1.6.tar.gz -
Subject digest:
1cfb24448abe041b33fc738a71fd1ecb6423d55a7abd3e680c87190c27d93adb - Sigstore transparency entry: 1956212604
- Sigstore integration time:
-
Permalink:
statsdl/edRFT@a23cecad35fa29049b1f5da6f70095fd9c6fb3b4 -
Branch / Tag:
refs/tags/v0.1.6 - Owner: https://github.com/statsdl
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a23cecad35fa29049b1f5da6f70095fd9c6fb3b4 -
Trigger Event:
release
-
Statement type:
File details
Details for the file edrft-0.1.6-py3-none-any.whl.
File metadata
- Download URL: edrft-0.1.6-py3-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff1933b4ce4b0469dabec41acd819e436425212b93267a744a2fd446e8dd09e9
|
|
| MD5 |
86ace72e7a8439e6d61b0a9f80040e0c
|
|
| BLAKE2b-256 |
09b4973d677241e42a26fccda4e5c60661ef7bc06bc24c618a626293bcb93912
|
Provenance
The following attestation bundles were made for edrft-0.1.6-py3-none-any.whl:
Publisher:
publish.yml on statsdl/edRFT
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edrft-0.1.6-py3-none-any.whl -
Subject digest:
ff1933b4ce4b0469dabec41acd819e436425212b93267a744a2fd446e8dd09e9 - Sigstore transparency entry: 1956212767
- Sigstore integration time:
-
Permalink:
statsdl/edRFT@a23cecad35fa29049b1f5da6f70095fd9c6fb3b4 -
Branch / Tag:
refs/tags/v0.1.6 - Owner: https://github.com/statsdl
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a23cecad35fa29049b1f5da6f70095fd9c6fb3b4 -
Trigger Event:
release
-
Statement type: