Time-Series Parameter Guidance
Recommendations returned by the AIML time-series parameter-discovery route.
Developer simulator
Test time-series parameter discovery, train, and predict payloads before integration. Use sample data, build a request visually, or paste the documented JSON payload.
Test the same payload your backend can send later. Simulator calls are rate-limited and meant for evaluation.
Sample Data
Start from a complete prediction request body for the selected model.
Guided Payload Builder
These fields map directly to the selected AIML request body: tenant key, model artifact key, output label, cadence, start date, and feature arrays.
featureSignals object.
Predict needs a model ID produced by an earlier successful classification training run. Predict does not send or verify modelFamily, so use the ID returned by the selected training run and avoid reusing the same taskKey plus targetLabel across classifier families. The shape-only sample does not point to a production artifact.
Raw JSON
Paste a documented AIML discovery, train, or predict payload. The simulator posts this JSON body directly to the public simulator endpoint for the selected operation and model.
Make sure the JSON matches the selected Predict API payload from the documentation.
Press Enter after each value. We'll build the comma-separated list for you.
Paste a header row plus numeric values. The CSV stays in this browser and is never uploaded as a file.
featureOutput.output,historical_demand,average_price_cents
122,120,2450
130,128,2400
137,135,2350
Result
Successful responses can be reviewed as a status summary, guidance, chart, table, trust/warning details, and raw JSON.
Recommendations returned by the AIML time-series parameter-discovery route.
Human-readable trust summary for the latest simulator response.
Raw trust fields returned by the simulator response.
{}
null
[]
Classification-specific API fields are shown here without converting them into a forecast chart.
Model output across the returned time points.
Holdout-only errors returned in the training response.
Inspect the exact values behind the charts.
{}
Developer helper
Use this public simulator route for evaluation. Do not send AIML internal base URLs, service tokens, or secret headers from browser apps.
Predict
Endpoint URL
/api/v1/predict/simulator/linear
HTTP method
POST
{}
Time-series discovery
Time-series parameter discovery recommends p, d, q, or a candidate ARIMA order from the supplied history. Treat suggestions as diagnostics to compare against validation metrics, not as guaranteed production settings.
| Term | Meaning | Simulator behavior |
|---|---|---|
p |
Autoregressive order: how many prior observations the AR portion uses. | find-p forwards the documented helper payload and renders returned PACF values only when the backend includes them. |
d |
Differencing order: how many times the series should be differenced to become sufficiently stationary. | find-d uses the confirmed ADF-based helper response and renders returned p-values. |
q |
Moving-average order: how many prior forecast errors the MA portion uses. | find-q forwards the documented helper payload and renders returned ACF values only when the backend includes them. |
(p,d,q) |
ARIMA order combining autoregressive, differencing, and moving-average terms. | find-order renders returned heuristic and AIC grid-search details without inventing missing metrics. |
Discovery payloads require timeSeriesInput as a flat numeric array with at least 8 observations; 20+ observations are recommended. Date and frequency fields are not required by the confirmed ARIMA helper schema. CSV import accepts value rows, or timestamp,value rows with timestamps ignored. SARIMA may also require seasonal order (P,D,Q,m); no seasonal-order discovery route is registered, so seasonal options are not shown.