Skip to content

Commit c5efbe0

Browse files
committed
fix dataset path in preprocessing script for m5
1 parent 4bfbb7d commit c5efbe0

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed
-21 MB
Binary file not shown.

testbed/src/testbed/data/heavy_tails/m5_subset/preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
def main(path_raw_dataset_dir: Path):
99
# Process the raw data file named temp.csv
10-
raw_data_path = path_raw_dataset_dir / "data.pkl"
10+
raw_data_path = path_raw_dataset_dir / "dataset.pkl"
1111

1212
with open(raw_data_path, "rb") as f: # noqa: PTH123
1313
data = pkl.load(f) # noqa: S301

0 commit comments

Comments
 (0)