tsaiEasy Examples

State-of-the-art deep learning for time series (built on fastai)

Getting started with tsai

Installation and basic usage of tsai.

python
# Install: pip install tsai
import tsai

# Basic tsai usage
print(f"Using tsai")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: tsai)

tsai is a third-party package. State-of-the-art deep learning for time series (built on fastai). Install with: pip install tsai

Common tsai operations

Frequently used features of tsai.

python
# Install: pip install tsai
import tsai

# Common tsai patterns
print(f"tsai version: {tsai.__version__}")

These are the most commonly used features of tsai in everyday development.

Want to try these examples interactively?

Open Easy Playground