Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Pycaret | 7,096 | 13 | 3 days ago | 83 | June 06, 2022 | 264 | mit | Jupyter Notebook | ||
An open-source, low-code machine learning library in Python | ||||||||||
Sktime | 6,295 | 12 hours ago | 684 | bsd-3-clause | Python | |||||
A unified framework for machine learning with time series | ||||||||||
Darts | 5,605 | 7 | 11 hours ago | 25 | June 22, 2022 | 212 | apache-2.0 | Python | ||
A python library for user-friendly forecasting and anomaly detection on time series. | ||||||||||
Autogluon | 5,525 | 10 hours ago | 222 | apache-2.0 | Python | |||||
AutoGluon: AutoML for Image, Text, Time Series, and Tabular Data | ||||||||||
Data Science | 3,528 | 10 days ago | 4 | Jupyter Notebook | ||||||
Collection of useful data science topics along with articles, videos, and code | ||||||||||
Gluonts | 3,436 | 7 | 15 hours ago | 58 | June 30, 2022 | 350 | apache-2.0 | Python | ||
Probabilistic time series modeling in Python | ||||||||||
Tsai | 3,251 | 1 | 16 hours ago | 41 | April 19, 2022 | 23 | apache-2.0 | Jupyter Notebook | ||
Time series Timeseries Deep Learning Machine Learning Pytorch fastai | State-of-the-art Deep Learning library for Time Series and Sequences in Pytorch / fastai | ||||||||||
Merlion | 2,921 | 7 days ago | 14 | June 28, 2022 | 14 | bsd-3-clause | Python | |||
Merlion: A Machine Learning Framework for Time Series Intelligence | ||||||||||
Neural_prophet | 2,852 | a day ago | 7 | March 22, 2022 | 100 | mit | Python | |||
NeuralProphet: A simple forecasting package | ||||||||||
Pytorch Forecasting | 2,703 | 4 | a day ago | 33 | May 23, 2022 | 364 | mit | Python | ||
Time series forecasting with PyTorch |
A unified interface for machine learning with time series
🚀 Version 0.16.1 out now! Check out the release notes here.
sktime is a library for time series analysis in Python. It provides a unified interface for multiple time series learning tasks. Currently, this includes time series classification, regression, clustering, annotation and forecasting. It comes with time series algorithms and scikit-learn compatible tools to build, tune and validate time series models.
Overview | |
---|---|
CI/CD |
|
Code |
|
Downloads |
|
Community |
|
Citation |
Documentation | |
---|---|
⭐️ Tutorials | New to sktime? Here's everything you need to know! |
📋 Binder Notebooks | Example notebooks to play with in your browser. |
👩💻 User Guides | How to use sktime and its features. |
✂️ Extension Templates | How to build your own estimator using sktime's API. |
🎛 API Reference | The detailed reference for sktime's API. |
📺 Video Tutorial | Our video tutorial from 2021 PyData Global. |
🛠 Changelog | Changes and version history. |
🌳 Roadmap | sktime's software and community development plan. |
📝 Related Software | A list of related software. |
Questions and feedback are extremely welcome! Please understand that we won't be able to provide individual support via email. We also believe that help is much more valuable if it's shared publicly, so that more people can benefit from it.
Type | Platforms |
---|---|
🐛 Bug Reports | GitHub Issue Tracker |
✨ Feature Requests & Ideas | GitHub Issue Tracker |
👩💻 Usage Questions | GitHub Discussions Stack Overflow |
💬 General Discussion | GitHub Discussions |
🏭 Contribution & Development | contributors channel Discord |
🌐 Community collaboration session | Discord - Fridays 4pm UTC, dev/meet-ups channel |
Our aim is to make the time series analysis ecosystem more interoperable and usable as a whole. sktime provides a unified interface for distinct but related time series learning tasks. It features dedicated time series algorithms and tools for composite model building including pipelining, ensembling, tuning and reduction that enables users to apply an algorithm for one task to another.
sktime also provides interfaces to related libraries, for example scikit-learn, statsmodels, tsfresh, PyOD and fbprophet, among others.
For deep learning, see our companion package: sktime-dl.
Module | Status | Links |
---|---|---|
Forecasting | stable | Tutorial API Reference Extension Template |
Time Series Classification | stable | Tutorial API Reference Extension Template |
Time Series Regression | stable | API Reference |
Transformations | stable | API Reference Extension Template |
Time Series Clustering | maturing | Extension Template |
Time Series Distances/Kernels | experimental | Extension Template |
Annotation | experimental | Extension Template |
For trouble shooting and detailed installation instructions, see the documentation.
conda-forge
)Using pip, sktime releases are available as source packages and binary wheels. You can see all available wheels here.
pip install sktime
or, with maximum dependencies,
pip install sktime[all_extras]
You can also install sktime from conda
via the conda-forge
channel. For the feedstock including the build recipe and configuration, check out this repository.
conda install -c conda-forge sktime
or, with maximum dependencies,
conda install -c conda-forge sktime-all-extras
from sktime.datasets import load_airline
from sktime.forecasting.base import ForecastingHorizon
from sktime.forecasting.model_selection import temporal_train_test_split
from sktime.forecasting.theta import ThetaForecaster
from sktime.performance_metrics.forecasting import mean_absolute_percentage_error
y = load_airline()
y_train, y_test = temporal_train_test_split(y)
fh = ForecastingHorizon(y_test.index, is_relative=False)
forecaster = ThetaForecaster(sp=12) # monthly seasonal periodicity
forecaster.fit(y_train)
y_pred = forecaster.predict(fh)
mean_absolute_percentage_error(y_test, y_pred)
>>> 0.08661467738190656
from sktime.classification.interval_based import TimeSeriesForestClassifier
from sktime.datasets import load_arrow_head
from sklearn.model_selection import train_test_split
from sklearn.metrics import accuracy_score
X, y = load_arrow_head()
X_train, X_test, y_train, y_test = train_test_split(X, y)
classifier = TimeSeriesForestClassifier()
classifier.fit(X_train, y_train)
y_pred = classifier.predict(X_test)
accuracy_score(y_test, y_pred)
>>> 0.8679245283018868
There are many ways to join the sktime community. We follow the all-contributors specification: all kinds of contributions are welcome - not just code.
Documentation | |
---|---|
💝 Contribute | How to contribute to sktime. |
🎒 Mentoring | New to open source? Apply to our mentoring program! |
📅 Meetings | Join our discussions, tutorials, workshops and sprints! |
👩🔧 Developer Guides | How to further develop sktime's code base. |
🚧 Enhancement Proposals | Design a new feature for sktime. |
🏅 Contributors | A list of all contributors. |
🙋 Roles | An overview of our core community roles. |
💸 Donate | Fund sktime maintenance and development. |
🏛 Governance | How and by whom decisions are made in sktime's community. |