A library for automatically finding the optimal model within feature and hyperparameter space.
Project description
wavetrainer
A library for automatically finding the optimal model within feature and hyperparameter space on time series models.
Dependencies :globe_with_meridians:
Python 3.11.6:
- pandas
- optuna
- scikit-learn
- feature-engine
- tqdm
- numpy
- scipy
- catboost
- venn-abers
- pytz
- torch
- tabpfn
- pytest-is-running
- xgboost
- jax
- tabpfn_extensions
- hyperopt
- pycaleva
- lightgbm
- kaleido
- memory-profiler
- matplotlib
Raison D'être :thought_balloon:
wavetrainer aims to split out the various aspects of creating a good model into different composable pieces and searches the space of these different pieces to find an optimal model. This came about after doing code like this multiple times on multiple projects. This is specifically geared towards time series models, validating itself through walk-forward analysis.
Architecture :triangular_ruler:
wavetrainer is an object orientated library. The entities are organised like so:
- Trainer: A sklearn compatible object that can fit and predict data.
- Reducer: An object that can reduce the feature space based on heuristics.
- Weights: An object that adds weights to the features.
- Selector: An object that can select which features to include from the training set.
- Calibrator: An object that can calibrate the probabilities produced by the model.
- Model: An object that represents the underlying model architecture being used.
- Windower: An object that represents the lookback window of the data.
Installation :inbox_tray:
This is a python package hosted on pypi, so to install simply run the following command:
pip install wavetrainer
or install using this local repository:
python setup.py install --old-and-unmanageable
Usage example :eyes:
The use of wavetrainer is entirely through code due to it being a library. It attempts to hide most of its complexity from the user, so it only has a few functions of relevance in its outward API.
Training
To train a model:
import wavetrainer as wt
import pandas as pd
import numpy as np
import random
data_size = 10
df = pd.DataFrame(
np.random.randint(0, 30, size=data_size),
columns=["X"],
index=pd.date_range("20180101", periods=data_size),
)
df["Y"] = [random.choice([True, False]) for _ in range(data_size)]
X = df["X"]
Y = df["Y"]
wavetrainer = wt.create("my_wavetrain")
wavetrainer = wavetrainer.fit(X, y=Y)
This will save it to the folder my_wavetrain.
Load
To load a trainer (as well as its composite states):
import wavetrainer as wt
wavetrainer = wt.load("my_wavetrain")
Predict
To make a prediction from new data:
import wavetrainer as wt
import pandas as pd
import numpy as np
wavetrainer = wt.load("my_wavetrain")
data_size = 1
df = pd.DataFrame(
np.random.randint(0, 30, size=data_size),
columns=["X"],
index=pd.date_range("20180101", periods=data_size),
)
X = df["X"]
preds = wavetrainer.predict(X)
preds will now contain both the predictions and the probabilities associated with those predictions.
License :memo:
The project is available under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file wavetrainer-0.2.17.tar.gz.
File metadata
- Download URL: wavetrainer-0.2.17.tar.gz
- Upload date:
- Size: 35.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9da5fc328f4de19afe263bf0e497654c4c98ed75086b02e294284258492ca7f
|
|
| MD5 |
18a499185ace2fddbc7abc51fc95a931
|
|
| BLAKE2b-256 |
8484bd616fa36ea73e2212c72ed8503c36d63f720b672ae4153fd942fce00ecd
|