zqiao11 commited on
Commit
9bc8de5
·
1 Parent(s): 749c198

Update README

Browse files
Files changed (1) hide show
  1. README.md +0 -72
README.md CHANGED
@@ -1,15 +1,8 @@
1
  ---
2
- <<<<<<< HEAD
3
  license: apache-2.0 # 或 mit, cc-by-4.0 等
4
  task_categories:
5
  - time-series-forecasting # 这是让系统识别为时间序列任务的关键
6
  tags: # 自定义标签
7
- =======
8
- license: apache-2.0
9
- task_categories:
10
- - time-series-forecasting
11
- tags:
12
- >>>>>>> 652ddfc (Refactor: Move data)
13
  - time-series
14
  - forecasting
15
  - benchmark
@@ -18,77 +11,12 @@ language:
18
  - en
19
  ---
20
 
21
- <<<<<<< HEAD
22
-
23
- # **TIME**
24
-
25
- ## 📂Files
26
- **Data**
27
- =======
28
- >>>>>>> 652ddfc (Refactor: Move data)
29
-
30
  # **TIME**
31
 
32
  We present TIME, a task-centric benchmark comprising 50 fresh datasets and 98 forecasting tasks, where configurations are aligned with real-world operational requirements. By archiving window-level prediction results, our benchmark enables pattern-level evaluation and visualization. This repository contains the ready-to-use Hugging Face dataset for running experiments.
33
 
34
  [🏆Leaderboard](https://huggingface.co/spaces/Real-TSF/TIME-leaderboard)
35
 
36
- <<<<<<< HEAD
37
- **Outputs and Results**
38
-
39
- The `output/` directory contains the extracted time series features (tsfeatures) for each variate and the detailed forecasting results for every experiment.
40
-
41
- **Note**: These files are for building leaderboard and visualization; users do not need to download this directory.
42
-
43
- * `features/`: **Statistical Features (tsfeatures)**
44
-
45
- Each dataset's features are saved to: `output/features/{dataset}/{freq}/`.
46
- This directory stores the computed tsfeatures for the variates in the dataset. The folder contains a CSV file named either:
47
- * `test.csv`: Features calculated on the **test split**.
48
- * `full.csv`: Features calculated on the **full dataset**.
49
-
50
- * `results/`: **Experimental Results**
51
-
52
- Each experiment is saved to: `output/results/{model}/{dataset}/{freq}/{horizon}/`.
53
- Each directory represents a specific model-dataset-frequency-horizon combination and contains the following files:
54
- * `config.json`: The experiment settings and hyperparameters.
55
- * `metrics.npz`: Window-level forecasting metrics (e.g., MASE, CRPS).
56
- * `predictions.npz`: Quantile prediction results for each sliding window.
57
-
58
- ## ⬇️Download
59
-
60
- ### Download Only the Dataset
61
- Since the repository contains extensive experimental results in the `output` folder, we recommend downloading **only** the dataset folder to save bandwidth and storage.
62
-
63
- You can use the `huggingface_hub` library to download specifically the `data/hf_dataset` directory:
64
-
65
- ```python
66
- from huggingface_hub import snapshot_download
67
- from datasets import load_from_disk
68
-
69
- # Download only the 'data/hf_dataset' folder
70
- # This skips the heavy 'output' folder
71
- folder_path = snapshot_download(
72
- repo_id="TIME-benchmark/TIME-1.0",
73
- repo_type="dataset",
74
- allow_patterns="data/hf_dataset/*",
75
- local_dir="./" # Downloads to your current directory
76
- )
77
- ```
78
-
79
- If you prefer using the command line, we strongly recommend using Git Sparse Checkout. This allows you to clone the repository structure without downloading the heavy output directory, saving significant bandwidth.
80
- ```bash
81
- # 1. Clone the repository without downloading files initially
82
- git clone --depth 1 --filter=blob:none --sparse https://huggingface.co/datasets/TIME-benchmark/TIME-1.0
83
-
84
- # 2. Navigate to the repository
85
- cd TIME-1.0
86
-
87
- # 3. Configure git to only download the 'data/hf_dataset' folder
88
- git sparse-checkout set data/hf_dataset
89
- ```
90
- =======
91
  [📂Processed csv](https://huggingface.co/datasets/Real-TSF/TIME-ProcessedCSV) (Optional: For reference or custom pipelines only)
92
- >>>>>>> 652ddfc (Refactor: Move data)
93
 
94
  [📊Reuslts & tsfeatures](https://huggingface.co/datasets/Real-TSF/TIME-Output) (Optional: Leaderboard data, not required for experiments)
 
1
  ---
 
2
  license: apache-2.0 # 或 mit, cc-by-4.0 等
3
  task_categories:
4
  - time-series-forecasting # 这是让系统识别为时间序列任务的关键
5
  tags: # 自定义标签
 
 
 
 
 
 
6
  - time-series
7
  - forecasting
8
  - benchmark
 
11
  - en
12
  ---
13
 
 
 
 
 
 
 
 
 
 
14
  # **TIME**
15
 
16
  We present TIME, a task-centric benchmark comprising 50 fresh datasets and 98 forecasting tasks, where configurations are aligned with real-world operational requirements. By archiving window-level prediction results, our benchmark enables pattern-level evaluation and visualization. This repository contains the ready-to-use Hugging Face dataset for running experiments.
17
 
18
  [🏆Leaderboard](https://huggingface.co/spaces/Real-TSF/TIME-leaderboard)
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  [📂Processed csv](https://huggingface.co/datasets/Real-TSF/TIME-ProcessedCSV) (Optional: For reference or custom pipelines only)
 
21
 
22
  [📊Reuslts & tsfeatures](https://huggingface.co/datasets/Real-TSF/TIME-Output) (Optional: Leaderboard data, not required for experiments)