Copy epf_be from smilegeng/fev_datasets
Browse files- .gitattributes +1 -0
- README.md +61 -0
- epf_be.tsfile +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
epf_be.tsfile filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
task_categories:
|
| 4 |
+
- time-series-forecasting
|
| 5 |
+
tags:
|
| 6 |
+
- time-series
|
| 7 |
+
- tsfile
|
| 8 |
+
pretty_name: epf_be (TsFile format)
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# epf_be — TsFile 格式
|
| 12 |
+
|
| 13 |
+
本目录是 [`autogluon/fev_datasets`](https://huggingface.co/datasets/autogluon/fev_datasets) 中 **epf_be** 子集转换为 [Apache TsFile](https://tsfile.apache.org/) 格式的版本。
|
| 14 |
+
|
| 15 |
+
## 来源与引用
|
| 16 |
+
|
| 17 |
+
- **原始来源**:https://zenodo.org/records/4624805
|
| 18 |
+
- **论文/引用**:[[7]](https://doi.org/10.1016/j.apenergy.2021.116983)
|
| 19 |
+
- **统一格式合集**:[autogluon/fev_datasets](https://huggingface.co/datasets/autogluon/fev_datasets)
|
| 20 |
+
|
| 21 |
+
> 本数据由外部来源转换为统一格式后再转为 TsFile。许可与引用以**原始来源**为准,我们不对原始数据主张任何权利。除非另有说明,数据仅供研究用途。
|
| 22 |
+
|
| 23 |
+
## 数据统计
|
| 24 |
+
|
| 25 |
+
| 序列数 | 中位长度 | 观测点数 | 动态列 | 静态列 | 文件 |
|
| 26 |
+
|---|---|---|---|---|---|
|
| 27 |
+
| 1 | 52,416 | 157,248 | 3 | 0 | `epf_be.tsfile` |
|
| 28 |
+
|
| 29 |
+
## TsFile 存储模型
|
| 30 |
+
|
| 31 |
+
- 每条原始序列(`id`)→ 一个 **device**(TAG 维度)。
|
| 32 |
+
- 随时间变化的 target / 动态协变量 → **measurement**(FIELD)。
|
| 33 |
+
- `timestamp` → `Time`(INT64 毫秒)。
|
| 34 |
+
- 表名:epf_be。
|
| 35 |
+
|
| 36 |
+
### 列含义
|
| 37 |
+
|
| 38 |
+
| 列 | 角色 | TsFile 类型 |
|
| 39 |
+
|---|---|---|
|
| 40 |
+
| `Time` | Time(时间列) | INT64 |
|
| 41 |
+
| `id` | TAG(device 维度) | STRING |
|
| 42 |
+
| `target` | FIELD(measurement) | FLOAT |
|
| 43 |
+
| `Generation_forecast` | FIELD(measurement) | FLOAT |
|
| 44 |
+
| `System_load_forecast` | FIELD(measurement) | FLOAT |
|
| 45 |
+
|
| 46 |
+
## 转换说明
|
| 47 |
+
|
| 48 |
+
- 每行原始数据是一整条序列 `(id, timestamp[], 各 target[])`,纵向打平为长表后写入 TsFile。
|
| 49 |
+
- 数值类型按源列自适应:float32→FLOAT、float64→DOUBLE、整数→INT64、bool→BOOLEAN。
|
| 50 |
+
- 时间精度:毫秒(INT64)。
|
| 51 |
+
- 大表会被工具自动分片为 `<名>_1.tsfile`、`<名>_2.tsfile` …,同属一个逻辑表。
|
| 52 |
+
|
| 53 |
+
## 读取示例
|
| 54 |
+
|
| 55 |
+
```python
|
| 56 |
+
from tsfile import TsFileReader
|
| 57 |
+
|
| 58 |
+
reader = TsFileReader("epf_be.tsfile")
|
| 59 |
+
schemas = reader.get_all_table_schemas()
|
| 60 |
+
# 表名:epf_be;列见下方"列含义"。
|
| 61 |
+
```
|
epf_be.tsfile
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bda531bc792dcda1b805d0e7797a18474a6f2919931cbf9130dbbba34c0bfcef
|
| 3 |
+
size 449569
|