EvalData commited on
Commit
f367b1e
·
verified ·
1 Parent(s): 79e67e6

Update repo URL to anonymous.4open.science (anonymity hardening)

Browse files
Files changed (1) hide show
  1. README.md +6 -5
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://github.com/evaldataset/TSFMI.
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("evaldataset/TSFMI", "anomaly")
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://github.com/evaldataset/TSFMI):
174
 
175
  ```bash
176
- git clone https://github.com/evaldataset/TSFMI.git && cd TSFMI
 
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://github.com/evaldataset/TSFMI}
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