Additional Info
| Field |
Value |
| Source |
https://github.com/The-EPISERVE-Consortium/model__prediction__grippeweb__baseline-nullmodel
|
| Last Updated |
June 8, 2026, 15:44 (UTC)
|
| Created |
June 8, 2026, 15:44 (UTC)
|
| algorithm |
|
| dataset_type |
model |
| docker_image |
ghcr.io/the-episerve-consortium/model__prediction__grippeweb__baseline-nullmodel |
| docker_image_created |
|
| docker_tag |
|
| input_format |
|
| lead_researcher |
|
| model_parameters |
[{"@type": "PropertyValue", "name": "horizon_weeks", "description": "Number of weeks to forecast ahead.", "valueRequired": true, "value": 4}, {"@type": "PropertyValue", "name": "n_reference_weeks", "description": "Number of past weeks to average as the baseline prediction.", "valueRequired": true, "value": 4}] |
| model_qid |
Q0540223073240 |
| output_format |
|
| paper_doi |
|
You can access all data via a web API using e.g. Python or curl.
Python
import requests
dataset_id = "q0540223073240"
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=q0540223073240"