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 🚀.
Uses orjson to serialize the payloads and to deserialize the responses. This is considerably faster because we don't need to convert the arrays to lists and then use json.dumps (which is slower than orjson.dumps by itself), we just provide the arrays directly to orjson. Parsing the responses is also faster.
Uses orjson to serialize the payloads and to deserialize the responses. This is considerably faster because we don't need to convert the arrays to lists and then use
json.dumps
(which is slower thanorjson.dumps
by itself), we just provide the arrays directly to orjson. Parsing the responses is also faster.