File size: 662 Bytes
b609bb7 | 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 | ---
license: mit
tags:
- seismology
- phase-detection
- pytorch
---
# PAW Pretrained Model
Pretrained PAW (Picker for Arrival of Waves) model for seismic phase detection.
## Model Details
- **Architecture:** CNN + LSTM + Transformer hybrid
- **Sampling Rate:** 40 Hz (0.025s per sample)
- **Input:** 5-second waveforms with 0.5s padding on each side
- **Output:** Binary masks indicating phase arrival windows
## Usage
```python
from pawlib import PAW
# Load pretrained model from Hugging Face
model = PAW.from_pretrained('hf://suroRitch/pawlib-pretrained/paw_corrected.pt')
# Make predictions
predictions = model.predict(waveforms)
```
## License
MIT
|