A median error of ~3 dB means half of all predictions are within 3 dB of ITM. The
gap between the median and the tail percentiles reflects a minority of hard,
high-loss cases that dominate the RMSE.
Current runtime artifacts are in
eval/.
The current repo validates the concept that attention can learn the ITM mapping, but it does not yet outperform native ITM in runtime.
1import torch
2from huggingface_hub import hf_hub_download
3from pathloss_transformer import create_model, load_weights # from the GitHub repo
4
5path = hf_hub_download("alexcpn/elevation_transformer", "model_inference.pth")
6model = create_model()
7load_weights(model, path) # torch.load(..., weights_only=True) + load_state_dict
8model.eval()