Datasets:
Update repo URL to anonymous.4open.science (anonymity hardening)
Browse files
README.md
CHANGED
|
@@ -117,7 +117,7 @@ for the TSFMI baseline-controlled probing protocol.
|
|
| 117 |
> Companion data for the NeurIPS 2026 Evaluations & Datasets Track submission
|
| 118 |
> *"TSFMI: A Baseline-Controlled Evaluation Protocol for Time-Series Foundation
|
| 119 |
> Model Representations."* The code (anonymous) lives at
|
| 120 |
-
> https://
|
| 121 |
|
| 122 |
## Why this dataset exists
|
| 123 |
|
|
@@ -152,7 +152,7 @@ artefacts in the paper.
|
|
| 152 |
```python
|
| 153 |
from datasets import load_dataset
|
| 154 |
|
| 155 |
-
ds = load_dataset("
|
| 156 |
print(ds)
|
| 157 |
# DatasetDict({
|
| 158 |
# train: 600, validation: 200, test: 200
|
|
@@ -170,10 +170,11 @@ Each row contains:
|
|
| 170 |
## Reproduction recipe
|
| 171 |
|
| 172 |
The same 60/20/20 + 5-seed + bootstrap protocol used in the paper is
|
| 173 |
-
implemented in [the GitHub repository](https://
|
| 174 |
|
| 175 |
```bash
|
| 176 |
-
|
|
|
|
| 177 |
python -m venv .venv && source .venv/bin/activate
|
| 178 |
pip install -r requirements.txt && pip install -e ".[dev]"
|
| 179 |
|
|
@@ -216,7 +217,7 @@ original licenses; see the GitHub `LICENSE` file for details.
|
|
| 216 |
author = {Anonymous Authors},
|
| 217 |
howpublished = {Anonymous submission to the NeurIPS 2026 Evaluations \& Datasets Track},
|
| 218 |
year = {2026},
|
| 219 |
-
url = {https://
|
| 220 |
}
|
| 221 |
```
|
| 222 |
|
|
|
|
| 117 |
> Companion data for the NeurIPS 2026 Evaluations & Datasets Track submission
|
| 118 |
> *"TSFMI: A Baseline-Controlled Evaluation Protocol for Time-Series Foundation
|
| 119 |
> Model Representations."* The code (anonymous) lives at
|
| 120 |
+
> https://anonymous.4open.science/r/TSFMI.
|
| 121 |
|
| 122 |
## Why this dataset exists
|
| 123 |
|
|
|
|
| 152 |
```python
|
| 153 |
from datasets import load_dataset
|
| 154 |
|
| 155 |
+
ds = load_dataset("EvalData/TSFMI", "anomaly")
|
| 156 |
print(ds)
|
| 157 |
# DatasetDict({
|
| 158 |
# train: 600, validation: 200, test: 200
|
|
|
|
| 170 |
## Reproduction recipe
|
| 171 |
|
| 172 |
The same 60/20/20 + 5-seed + bootstrap protocol used in the paper is
|
| 173 |
+
implemented in [the GitHub repository](https://anonymous.4open.science/r/TSFMI):
|
| 174 |
|
| 175 |
```bash
|
| 176 |
+
curl -L -o TSFMI.zip "https://anonymous.4open.science/api/repo/TSFMI/zip"
|
| 177 |
+
unzip TSFMI.zip && cd TSFMI
|
| 178 |
python -m venv .venv && source .venv/bin/activate
|
| 179 |
pip install -r requirements.txt && pip install -e ".[dev]"
|
| 180 |
|
|
|
|
| 217 |
author = {Anonymous Authors},
|
| 218 |
howpublished = {Anonymous submission to the NeurIPS 2026 Evaluations \& Datasets Track},
|
| 219 |
year = {2026},
|
| 220 |
+
url = {https://anonymous.4open.science/r/TSFMI}
|
| 221 |
}
|
| 222 |
```
|
| 223 |
|