Datasets:
File size: 2,018 Bytes
22f124d | 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | ---
license: mit
task_categories:
- time-series-forecasting
- time-series-classification
tags:
- time-series
- benchmark
- forecasting
- anomaly-detection
size_categories:
- 1M<n<10M
---
# PaperBenchPro Time Series Datasets
时序分析基准数据集合集,按任务类型组织。
## 📂 目录结构
```
dataset_by_task/
├── anomaly_detection/ # 异常检测
│ ├── MSL/
│ ├── PSM/
│ ├── SMAP/
│ ├── SMD/
│ └── SWaT/
├── classification/ # 时序分类
│ ├── EthanolConcentration/
│ ├── FaceDetection/
│ ├── Handwriting/
│ ├── Heartbeat/
│ ├── JapaneseVowels/
│ ├── PEMS-SF/
│ ├── SelfRegulationSCP1/
│ ├── SelfRegulationSCP2/
│ ├── SpokenArabicDigits/
│ └── UWaveGestureLibrary/
├── imputation/ # 数据填补
│ ├── electricity/
│ ├── ETT-small/
│ └── weather/
├── long_term_forecast/ # 长期预测
│ ├── electricity/
│ ├── ETT-small/
│ ├── exchange_rate/
│ ├── illness/
│ ├── traffic/
│ └── weather/
└── short_term_forecast/ # 短期预测
└── m4/
```
## 📊 任务说明
| 任务类型 | 描述 | 数据集数量 |
|---------|------|-----------|
| anomaly_detection | 时序异常检测 | 5 |
| classification | 时序分类 | 10 |
| imputation | 缺失值填补 | 6 |
| long_term_forecast | 长期预测 (96/192/336/720步) | 9 |
| short_term_forecast | 短期预测 (M4竞赛) | 1 |
## 🚀 使用方式
```python
from huggingface_hub import snapshot_download
# 下载全部数据
snapshot_download(repo_id="hahuh/PaperBenchPro", repo_type="dataset")
# 只下载特定任务
snapshot_download(
repo_id="hahuh/PaperBenchPro",
repo_type="dataset",
allow_patterns="anomaly_detection/*"
)
```
## 📝 引用
如果使用本数据集,请引用相关论文。
|