Views
No views yet
| File | Trained on | Config |
|---|---|---|
flame_starcop.pt | STARCOP | flame_starcop.yaml |
flame_emit.pt | OxHyperSyntheticCH4 | flame_emit.yaml |
torch.save dict with keys model, epoch and
metric. The matching training configs are included here and in the code
repository under configs/.1pip install huggingface_hub
2hf download hjh1037/FLAME flame_starcop.pt flame_emit.pt --local-dir .1import torch, yaml
2from flame.model import build_model
3
4cfg = yaml.safe_load(open('configs/flame_starcop.yaml'))
5model = build_model(cfg['model']).eval()
6state = torch.load('flame_starcop.pt', map_location='cpu', weights_only=False)
7model.load_state_dict(state['model'])1@article{heo2026flame,
2 title={FLAME: Physics-Guided Neural Operators for Onboard Satellite Methane Detection in Hyperspectral Imagery},
3 author={Heo, Junhyuk and Park, Junhwan and Sim, Sancheol and Choi, Beomkyu and Cho, Woojin},
4 journal={arXiv preprint arXiv:2606.01577},
5 year={2026}
6}