Views
No views yet
ExoPrompt: Transformer-based greenhouse climate forecasting with structured conditioning and physics-based simulation. Gürkan Soykan, Önder Babur, Qingzhi Liu, Bedir Tekinerdogan. Computers and Electronics in Agriculture, vol. 246, p. 111673, 2026. DOI: 10.1016/j.compag.2026.111673
| Filename | Variant | Lighting scenario | Architecture |
|---|---|---|---|
200k_exo_hps.ckpt | ExoPrompt | HPS | Transformer + exo-prompt projector (254-d) |
200k_exo_led.ckpt | ExoPrompt | LED | Transformer + exo-prompt projector (254-d) |
200k_exo_mixed.ckpt | ExoPrompt | Mixed (HPS + LED) | Transformer + exo-prompt projector (254-d) |
200k_vanilla_hps.ckpt | Vanilla | HPS | Transformer (no exogenous conditioning) |
200k_vanilla_led.ckpt | Vanilla | LED | Transformer (no exogenous conditioning) |
200k_vanilla_mixed.ckpt | Vanilla | Mixed (HPS + LED) | Transformer (no exogenous conditioning) |
pred_len = 96, label_len = 48, 3-feature indoor-climate
output: tAir, vpAir, co2Air).exoprompt-inference Streamlit
demo, or directly via the
official ExoPrompt repo. Minimal example:1from huggingface_hub import hf_hub_download
2from exoprompt_inference.inference.model_loader import (
3 load_model_from_checkpoint,
4 ModelType,
5)
6
7ckpt_path = hf_hub_download(
8 repo_id="gsoykan/exoprompt-checkpoints",
9 filename="200k_exo_hps.ckpt",
10)
11model = load_model_from_checkpoint(
12 ckpt_path,
13 model_type=ModelType.TIME_SERIES_LIB_MODEL,
14 device="cpu",
15)1@article{SOYKAN2026111673,
2 title = {ExoPrompt: Transformer-based greenhouse climate forecasting with structured conditioning and physics-based simulation},
3 journal = {Computers and Electronics in Agriculture},
4 volume = {246},
5 pages = {111673},
6 year = {2026},
7 author = {Soykan, G{\"u}rkan and Babur, {\"O}nder and Liu, Qingzhi and Tekinerdogan, Bedir}
8}