File size: 1,050 Bytes
54f0eb0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
---
license: apache-2.0
tags:
- space-safety
- conjunction-assessment
- satellite-collision
- physics-informed
---
# Panacea — Satellite Collision Avoidance Models
ML models for satellite conjunction assessment, trained on ESA Kelvins CDM dataset.
## Models
| 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 |
## Usage
```python
from huggingface_hub import hf_hub_download
# Download PI-TFT model
path = hf_hub_download("DTanzillo/panacea-models", "transformer.pt")
checkpoint = torch.load(path, map_location="cpu", weights_only=False)
```
## Weekly Fine-Tuning
The PI-TFT model is automatically fine-tuned weekly using Starlink maneuver
detections as proxy training labels. See the
[Panacea repo](https://github.com/DominicTanzillo/Panacea) for details. |