- Notifications
You must be signed in to change notification settings - Fork298
TimeGPT-1: production ready pre-trained Time Series Foundation Model for forecasting and anomaly detection. Generative pretrained transformer for time series trained on over 100B data points. It's capable of accurately predicting various domains such as retail, electricity, finance, and IoT with just a few lines of code 🚀.
License
Nixtla/nixtla
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation

TimeGPT is a production ready, generative pretrained transformer for time series. It's capable of accurately predicting various domains such as retail, electricity, finance, and IoT with just a few lines of code 🚀.
QuickstartTGPT.mp4
pipinstallnixtla>=0.7.0
importpandasaspdfromnixtlaimportNixtlaClient
# Get your API Key at dashboard.nixtla.io# 1. Instantiate the NixtlaClientnixtla_client=NixtlaClient(api_key='YOUR API KEY HERE')# 2. Read historic electricity demand datadf=pd.read_csv('https://raw.githubusercontent.com/Nixtla/transfer-learning-time-series/main/datasets/electricity-short.csv')# 3. Forecast the next 24 hoursfcst_df=nixtla_client.forecast(df,h=24,level=[80,90])# 4. Plot your results (optional)nixtla_client.plot(df,fcst_df,level=[80,90])
# Get your API Key at dashboard.nixtla.io# 1. Instantiate the NixtlaClientnixtla_client=NixtlaClient(api_key='YOUR API KEY HERE')# 2. Read Data # Wikipedia visits of NFL Star (df=pd.read_csv('https://datasets-nixtla.s3.amazonaws.com/peyton-manning.csv')# 3. Detect Anomaliesanomalies_df=nixtla_client.detect_anomalies(df,time_col='timestamp',target_col='value',freq='D')# 4. Plot your results (optional)nixtla_client.plot(df,anomalies_df,time_col='timestamp',target_col='value')
Explore ourAPI Reference to discover how to leverage TimeGPT across various programming languages including JavaScript, Go, and more.
Zero-shot Inference: TimeGPT can generate forecasts and detect anomalies straight out of the box, requiring no prior training data. This allows for immediate deployment and quick insights from any time series data.
Fine-tuning: Enhance TimeGPT's capabilities by fine-tuning the model on your specific datasets, enabling the model to adapt to the nuances of your unique time series data and improving performance on tailored tasks.
API Access: Integrate TimeGPT seamlessly into your applications via our robust API. Upcoming support for Azure Studio will provide even more flexible integration options. Alternatively, deploy TimeGPT on your own infrastructure to maintain full control over your data and workflows.
Add Exogenous Variables: Incorporate additional variables that might influence your predictions to enhance forecast accuracy. (E.g. Special Dates, events or prices)
Multiple Series Forecasting: Simultaneously forecast multiple time series data, optimizing workflows and resources.
Custom Loss Function: Tailor the fine-tuning process with a custom loss function to meet specific performance metrics.
Cross Validation: Implement out of the box cross-validation techniques to ensure model robustness and generalizability.
Prediction Intervals: Provide intervals in your predictions to quantify uncertainty effectively.
Irregular Timestamps: Handle data with irregular timestamps, accommodating non-uniform interval series without preprocessing.
Dive into ourcomprehensive documentation to discover examples and practical use cases for TimeGPT. Our documentation covers a wide range of topics, including:
Getting Started: Begin with our user-friendlyQuickstart Guide and learn how toset up your API key effortlessly.
Advanced Techniques: Master advanced forecasting methods and learn how to enhance model accuracy with our tutorials onanomaly detection, fine-tuning models using specific loss functions, and scaling computations across distributed frameworks such asSpark, Dask, and Ray.
Specialized Topics: Explore specialized topics likehandling exogenous variables, model validation throughcross-validation, and strategies forforecasting under uncertainty.
Real World Applications: Uncover how TimeGPT is applied in real-world scenarios through case studies onforecasting web traffic andpredicting Bitcoin prices.
Time series data is pivotal across various sectors, including finance, healthcare, meteorology, and social sciences. Whether it's monitoring ocean tides or tracking the Dow Jones's daily closing values, time series data is crucial for forecasting and decision-making.
Traditional analysis methods such as ARIMA, ETS, MSTL, Theta, CES, machine learning models like XGBoost and LightGBM, and deep learning approaches have been standard tools for analysts. However, TimeGPT introduces a paradigm shift with its standout performance, efficiency, and simplicity. Thanks to its zero-shot inference capability, TimeGPT streamlines the analytical process, making it accessible even to users with minimal coding experience.
TimeGPT is user-friendly and low-code, enabling users to upload their time series data and either generate forecasts or detect anomalies with just a single line of code. As the only foundation model for time series analysis out of the box, TimeGPT can be integrated via our public APIs, through Azure Studio (coming soon), or deployed on your own infrastructure.
Self-attention, the revolutionary concept introduced by the paper “Attention is all you need“, is the basis of the this foundational model. The TimeGPT model is not based on any existing large language model(LLMs). It is independently trained on vast timeseries dataset as a large transformer model and is designed so as to minimize the forecasting error.
The architecture consists of an encoder-decoder structure withmultiple layers, each with residual connections and layer normalization. Finally, a linear layer maps the decoder’s output to the forecasting window dimension. The general intuition is that attentionbased mechanisms are able to capture the diversity of past events and correctly extrapolate potentialfuture distributions.
TimeGPT was trained on, to our knowledge, the largest collection of publicly available time series,collectively encompassing over 100 billion data points. This training set incorporates time seriesfrom a broad array of domains, including finance, economics, demographics, healthcare, weather,IoT sensor data, energy, web traffic, sales, transport, and banking. Due to this diverse set of domains,the training dataset contains time series with a wide range of characteristics
TimeGPT has been tested for its zero-shot inference capabilities on more than 300K unique series, which involve using the model without additional fine-tuning on the test dataset. TimeGPT outperforms a comprehensive range of well-established statistical and cutting-edge deep learning models, consistently ranking among the top three performers across various frequencies.
TimeGPT also excels by offering simple and rapid predictions using a pre-trained model. This stands in stark contrast to other models that typically require an extensive training and prediction pipeline.
For zero-shot inference, our internal tests recorded an average GPU inference speed of 0.6 milliseconds per series for TimeGPT, which nearly mirrors that of the simple Seasonal Naive.
If you find TimeGPT useful for your research, please consider citing the associatedpaper:
@misc{garza2023timegpt1, title={TimeGPT-1}, author={Azul Garza and Max Mergenthaler-Canseco}, year={2023}, eprint={2310.03589}, archivePrefix={arXiv}, primaryClass={cs.LG}}TimeGPT has been featured in many publications and has been recognized for its innovative approach to time series forecasting. Here are some of the features and mentions:
- TimeGPT Revolutionizing Time Series Forecasting
- TimeGPT: The First Foundation Model for Time Series Forecasting
- TimeGPT: Revolutionising Time Series Forecasting with Generative Models
- TimeGPT on Turing Post
- TimeGPT Presentation at AWS Events
- TimeGPT: Machine Learning for Time Series Made Accessible - Podcast
- TimeGPT on The Data Exchange
- How TimeGPT Transforms Predictive Analytics with AI
- TimeGPT: The First Foundation Model - AI Horizon Forecast
TimeGPT is closed source. However, this SDK is open source and available under the Apache 2.0 License. Feel free to contribute (check out theContributing guide for more details).
NixtlaClient may be used to access services powered by technology from Google, Amazon, IBM, Datadog, and NXAI. All trademarks are the property of their respective owners.
For any questions or feedback, please feel free to reach out to us at ops [at] nixtla.io.
About
TimeGPT-1: production ready pre-trained Time Series Foundation Model for forecasting and anomaly detection. Generative pretrained transformer for time series trained on over 100B data points. It's capable of accurately predicting various domains such as retail, electricity, finance, and IoT with just a few lines of code 🚀.
Topics
Resources
License
Code of conduct
Contributing
Uh oh!
There was an error while loading.Please reload this page.



