DocsChronos-2
Time Series
Chronos-2
Time series forecasting with CuteChronos2 acceleration. Achieves 27x speedup over baseline with custom Triton kernels.
$0.50 per forecast
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| values | float[] | required | — | Array of historical time series values |
| prediction_length | int | optional | 12 | Number of future time steps to forecast |
| quantile_levels | float[] | optional | — | Quantile levels for prediction intervals |
Example Request
curl -X POST https://cutedsl.cc/api/service \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"service": "chronos2",
"values": [1.2, 1.5, 1.3, 1.8, 2.1, 1.9, 2.4],
"prediction_length": 12
}'Example Response
{
"result": {
"forecast": [
2.5,
2.6,
2.4,
2.7,
2.8
],
"quantiles": {
"0.1": [
2.1,
2.2
],
"0.5": [
2.5,
2.6
],
"0.9": [
2.9,
3
]
}
},
"credits_used": 500,
"credits_remain": 49500,
"usd_equivalent": 0.5
}Playground
Connect your wallet to try the playground.
Connect Wallet