ETNA is the first python open source framework of Tinkoff.ru AI Center. It is designed to make working with time series simple, productive, and fun.
Project description
ETNA Time Series Library
Homepage | Documentation | Tutorials | Contribution Guide | Release Notes
ETNA is an easy-to-use time series forecasting framework. It includes built in toolkits for time series preprocessing, feature generation, a variety of predictive models with unified interface - from classic machine learning to SOTA neural networks, models combination methods and smart backtesting. ETNA is designed to make working with time series simple, productive, and fun.
ETNA is the first python open source framework of Tinkoff.ru Artificial Intelligence Center. The library started as an internal product in our company - we use it in over 10+ projects now, so we often release updates. Contributions are welcome - check our Contribution Guide.
Installation
ETNA is on PyPI, so you can use pip
to install it.
pip install --upgrade pip
pip install etna
Get started
Here's some example code for a quick start.
import pandas as pd
from etna.datasets.tsdataset import TSDataset
from etna.models import ProphetModel
# Read the data
df = pd.read_csv("examples/data/example_dataset.csv")
# Create a TSDataset
df = TSDataset.to_dataset(df)
ts = TSDataset(df, freq="D")
# Choose a horizon
HORIZON = 8
# Fit the model
model = ProphetModel()
model.fit(ts)
# Make the forecast
future_ts = ts.make_future(HORIZON)
forecast_ts = model.forecast(future_ts)
Tutorials
We have also prepared a set of tutorials for an easy introduction:
Notebook | Interactive launch |
---|---|
Get started | |
Backtest | |
EDA | |
Outliers | |
Clustering | |
Deep learning models | |
Ensembles |
Documentation
ETNA documentation is available here.
Acknowledgments
ETNA.Team
Alekseev Andrey, Shenshina Julia, Gabdushev Martin, Kolesnikov Sergey, Bunin Dmitriy, Chikov Aleksandr, Barinov Nikita, Romantsov Nikolay, Makhin Artem, Denisov Vladislav, Mitskovets Ivan, Munirova Albina
ETNA.Contributors
Levashov Artem, Podkidyshev Aleksey
License
Feel free to use our library in your commercial and private applications.
ETNA is covered by Apache 2.0. Read more about this license here
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
Built Distribution
File details
Details for the file etna-1.3.2.tar.gz
.
File metadata
- Download URL: etna-1.3.2.tar.gz
- Upload date:
- Size: 98.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.9.8 Linux/5.11.0-1021-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7a520c82d1476233378fda8612a5382906a1381ff54ce40ec01886f87e63da1 |
|
MD5 | d83d77a553ebed56c75de6c47d8ee334 |
|
BLAKE2b-256 | 20741f57d76d2916411fdbac156ccbb90af7efe45cc5aba0db6a7dfc3eeff00c |
Provenance
File details
Details for the file etna-1.3.2-py3-none-any.whl
.
File metadata
- Download URL: etna-1.3.2-py3-none-any.whl
- Upload date:
- Size: 138.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.9.8 Linux/5.11.0-1021-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4393142cc598d54e938d86d338189cb2ce355da18cb5564c5491d4bae262f9c7 |
|
MD5 | 6cb2f9f437fc2f2ede3ed5fac6f53f7c |
|
BLAKE2b-256 | 3dab80b78f92b1e71134e917e79747a9f2b836e26619b3b7d5e135209d2dfbe2 |