Views
No views yet
Predicting Time-Dependent Flow Over Complex Geometries Using Operator Networks
checkpoints/ directory:time-dependent-deeponet_1in.ckpt – model trained with input sequence length s = 1time-dependent-deeponet_4in.ckpt – model trained with input sequence length s = 4time-dependent-deeponet_8in.ckpt – model trained with input sequence length s = 8time-dependent-deeponet_16in.ckpt – model trained with input sequence length s = 16huggingface_hub:1from huggingface_hub import hf_hub_download
2import torch
3
4from models.geometric_deeponet.geometric_deeponet import GeometricDeepONetTime
5
6REPO_ID = "arabeh/DeepONet-FlowBench-FPO"
7filename = "checkpoints/time-dependent-deeponet_4in.ckpt" # choose 1in / 4in / 8in / 16in
8
9# 1) Download checkpoint file locally
10ckpt_path = hf_hub_download(REPO_ID, filename)
11
12# 2) Load the Lightning model from checkpoint
13device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
14model = GeometricDeepONetTime.load_from_checkpoint(ckpt_path, map_location=device)
15model = model.eval().to(device)1@article{rabeh2025predicting,
2 title={Predicting Time-Dependent Flow Over Complex Geometries Using Operator Networks},
3 author={Rabeh, Ali and Murugaiyan, Suresh and Krishnamurthy, Adarsh and Ganapathysubramanian, Baskar},
4 journal={arXiv preprint arXiv:2512.04434},
5 year={2025}
6}