gluonts — Easy Examples
Amazon's toolkit for probabilistic time series modeling
Getting started with gluonts
Installation and basic usage of gluonts.
python
# Install: pip install gluonts[torch] import gluonts # Basic gluonts usage print(f"Using gluonts") # See documentation for detailed examples
Expected Output
# Expected output shown below # (Run locally with: gluonts)
gluonts is a third-party package. Amazon's toolkit for probabilistic time series modeling. Install with: pip install gluonts[torch]
Common gluonts operations
Frequently used features of gluonts.
python
# Install: pip install gluonts[torch] import gluonts # Common gluonts patterns print(f"gluonts version: {gluonts.__version__}")
These are the most commonly used features of gluonts in everyday development.
Want to try these examples interactively?
Open Easy Playground