Celsia commited on
Commit
386ea53
·
verified ·
1 Parent(s): db2e453

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +54 -1
README.md CHANGED
@@ -1,3 +1,56 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ license_name: us-public-domain
4
+ license_link: https://www.usa.gov/government-works
5
+ pretty_name: "HPEC 2026 — HS6 US Trade Demand-Forecasting Lattice"
6
+ tags:
7
+ - time-series-forecasting
8
+ - demand-forecasting
9
+ - trade
10
+ - census
11
+ size_categories:
12
+ - 10K<n<100K
13
  ---
14
+
15
+ # HPEC 2026 — HS6 US Trade Demand-Forecasting Lattice
16
+
17
+ Dataset for the IEEE HPEC 2026 paper **"Are Multidimensional Models Worth it in Demand Forecasting?"** (Paper ID 372). Built from the U.S. Census Bureau's bulk port-level HS6 merchandise trade files (public domain), it provides a dense commodity × state × flow lattice for benchmarking flat vs. explicitly multidimensional sequence models (RNNs, Transformers, S4/S4ND, Mamba-2/3, CaFA-style factorized attention).
18
+
19
+ Code (models, training sweeps, lattice builder): https://github.com/triadastra/Multidimensional-Long-Series-Forecasting
20
+
21
+ ## Contents
22
+
23
+ ```
24
+ raw/ 384 Census bulk ZIPs — port-level HS6 exports + imports, 2010–2025
25
+ raw/reference/ Census codebooks and fixed-width record layouts
26
+ processed/census_lattice_9ch.npz main benchmark lattice (9 channels, ~219 MB)
27
+ processed/census_lattice_9ch.json sidecar metadata (REQUIRED — see below)
28
+ processed/census_lattice.npz earlier 2-channel build (~64 MB)
29
+ processed/census_lattice.json its sidecar
30
+ ```
31
+
32
+ ## Processed lattice (`census_lattice_9ch.npz`)
33
+
34
+ - **Grid:** 1,263 HS6 commodities × 14 port-states × 2 flows (export/import), 192 monthly steps (2010–2025); cells kept at ≥80% density → **28,292 active series**.
35
+ - **Channels (9):** aggregate + air/containerized/bulk/land **value**, and aggregate + air/containerized/bulk **weight**; all `log1p` then per-series MinMax fit on the training split only.
36
+ - **Sidecar JSON is load-bearing:** the `.npz` carries no metadata. Target channels, axis labels, and split boundaries live in the matching `.json` — always load it alongside (`target_channels = [0, 5]` for the 9-channel build; a script reading the npz alone will silently pick wrong defaults).
37
+ - Built by `scripts/build_census_lattice.py` in the GitHub repo (HS4 dev variant via `--level 4`).
38
+
39
+ ## Raw files
40
+
41
+ 230-character fixed-width records: HS6 (Schedule B) + country (Schedule C) + district/port (Schedule D → state) + YYYYMM + value/weight fields. Schedule B / HS codes were re-versioned in 2012, 2017, and 2022 — match each year to its vintage code list (layouts and vintage code tables in `raw/reference/`).
42
+
43
+ ## License & provenance
44
+
45
+ Source data is produced by the U.S. Census Bureau and is in the **public domain** (17 U.S.C. § 105). This repackaging adds no restrictions.
46
+
47
+ ## Citation
48
+
49
+ ```bibtex
50
+ @inproceedings{fan2026multidim,
51
+ title = {Are Multidimensional Models Worth it in Demand Forecasting?},
52
+ author = {Fan, Cheng-Jui and Aristov, Nikolay and Dugundji, Elenna},
53
+ booktitle = {IEEE High Performance Extreme Computing Conference (HPEC)},
54
+ year = {2026}
55
+ }
56
+ ```