Additional Info
| Field |
Value |
| Source |
https://github.com/The-EPISERVE-Consortium/model__prediction__generic__timesfm
|
| Last Updated |
June 10, 2026, 18:13 (UTC)
|
| Created |
June 10, 2026, 18:13 (UTC)
|
| algorithm |
|
| dataset_type |
model |
| docker_image |
ghcr.io/the-episerve-consortium/model__prediction__generic__timesfm |
| docker_image_created |
2026-06-09T22:42:51.661912381Z |
| docker_tag |
latest |
| input_format |
|
| lead_researcher |
|
| model_parameters |
[{"@type": "PropertyValue", "name": "history_length", "description": "Number of rows to use as model context. Window ends at total_rows - prediction_offset.", "valueRequired": true}, {"@type": "PropertyValue", "name": "prediction_length", "description": "Number of steps to forecast ahead. Maximum: 512.", "valueRequired": true, "maxValue": 512}, {"@type": "PropertyValue", "name": "prediction_offset", "description": "Rows to skip at the end before the history window. Use for back-testing against known data.", "valueRequired": false, "value": 0}] |
| model_qid |
Q7611536028271 |
| output_format |
|
| paper_doi |
|
You can access all data via a web API using e.g. Python or curl.
Python
import requests
dataset_id = "q7611536028271"
url = "https://data.episerve.zib.de/api/3/action/package_show"
response = requests.get(url, params={"id": dataset_id})
dataset = response.json()["result"]
print(dataset["title"])
for resource in dataset["resources"]:
print(resource["name"], resource["url"])
curl
curl "https://data.episerve.zib.de/api/3/action/package_show?id=q7611536028271"