Views
No views yet
| Model | File | AUC-PR | Description |
|---|---|---|---|
| Orbital Shell Baseline | baseline.json | 0.061 | Altitude-binned collision rates |
| XGBoost | xgboost.pkl | 0.988 | Gradient-boosted trees on CDM features |
| PI-TFT | transformer.pt | 0.511 | Physics-Informed Temporal Fusion Transformer |
1from huggingface_hub import hf_hub_download
2
3# Download PI-TFT model
4path = hf_hub_download("DTanzillo/panacea-models", "transformer.pt")
5checkpoint = torch.load(path, map_location="cpu", weights_only=False)