Datasets:
Add link to paper and task metadata
#2
by
nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Poseidon: Global Earthquake Dataset (1990-2020)
|
| 2 |
|
|
|
|
|
|
|
| 3 |
## Overview
|
| 4 |
|
| 5 |
**Poseidon** is a largest opensource global earthquake dataset containing **2.8+ million seismic events** spanning 30 years (1990-2020). Named after the Greek god of earthquakes, this dataset is designed for machine learning applications including earthquake prediction, seismic hazard analysis, spatiotemporal pattern recognition, and energy-based modeling.
|
|
@@ -97,7 +113,7 @@ Example values:
|
|
| 97 |
|
| 98 |
## Usage
|
| 99 |
|
| 100 |
-
```
|
| 101 |
import pandas as pd
|
| 102 |
df = pd.read_csv("poseidon.csv")
|
| 103 |
df['datetime'] = pd.to_datetime(df['time'])
|
|
@@ -105,7 +121,7 @@ df['datetime'] = pd.to_datetime(df['time'])
|
|
| 105 |
|
| 106 |
### Example: Filter Significant Events
|
| 107 |
|
| 108 |
-
```
|
| 109 |
major_quakes = df[df['magnitude'] >= 6.0]
|
| 110 |
print(f"Major earthquakes (M6+): {len(major_quakes):,}")
|
| 111 |
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- time-series-forecasting
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
pretty_name: Poseidon
|
| 8 |
+
size_categories:
|
| 9 |
+
- 1M<n<10M
|
| 10 |
+
tags:
|
| 11 |
+
- geophysics
|
| 12 |
+
- earthquake-prediction
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
# Poseidon: Global Earthquake Dataset (1990-2020)
|
| 16 |
|
| 17 |
+
This is the official dataset for the paper [POSEIDON: Physics-Optimized Seismic Energy Inference and Detection Operating Network](https://huggingface.co/papers/2601.02264).
|
| 18 |
+
|
| 19 |
## Overview
|
| 20 |
|
| 21 |
**Poseidon** is a largest opensource global earthquake dataset containing **2.8+ million seismic events** spanning 30 years (1990-2020). Named after the Greek god of earthquakes, this dataset is designed for machine learning applications including earthquake prediction, seismic hazard analysis, spatiotemporal pattern recognition, and energy-based modeling.
|
|
|
|
| 113 |
|
| 114 |
## Usage
|
| 115 |
|
| 116 |
+
```python
|
| 117 |
import pandas as pd
|
| 118 |
df = pd.read_csv("poseidon.csv")
|
| 119 |
df['datetime'] = pd.to_datetime(df['time'])
|
|
|
|
| 121 |
|
| 122 |
### Example: Filter Significant Events
|
| 123 |
|
| 124 |
+
```python
|
| 125 |
major_quakes = df[df['magnitude'] >= 6.0]
|
| 126 |
print(f"Major earthquakes (M6+): {len(major_quakes):,}")
|
| 127 |
|