Views
No views yet
<name>.tar.gz is a self-contained reproducible bundle with:config/*.gin — full gin config + include chainckpts/HSTU-..._ep100 — resumable PyTorch checkpoint (model + optimizer + RNG + epoch + batch_id state)tb/.../events.out.tfevents.* — full TensorBoard event files with per-epoch trajectoryMANIFEST.json — machine-readable metadatacode-archive.tar.gz containing the full forked buck-iter2 codebase with iter2 patches (resumable ckpts, EVAL2, in-memory dataset preloader, fbgemm compat fix) + iter7/iter8 patches (PRISM-additive, low-dropout, time-decay).1# Download the SOTA bundle
2hf download tzchen07/hstu-iter78-preservation iter8-exp4-SOTA.tar.gz --local-dir .
3
4# Download the code
5hf download tzchen07/hstu-iter78-preservation code-archive.tar.gz --local-dir .
6tar xzf code-archive.tar.gz
7cd buck-iter2
8
9# Set up env (Python 3.11 + torch 2.7.1+cu128 + fbgemm-gpu 1.2.0)
10python3 -m venv .venv && source .venv/bin/activate
11pip install torch==2.7.1 --index-url https://download.pytorch.org/whl/cu128
12pip install fbgemm-gpu==1.2.0 torchrec gin-config tensorboard absl-py pandas numpy
13
14# Stage data (preprocessed ml-20m npz files - see separate data archive)
15
16# Run training (the SOTA recipe)
17NCCL_TUNER_CONFIG_PATH=/shared/nccl_tuner.textproto \
18CUDA_VISIBLE_DEVICES=0 PYTHONPATH=$(pwd) \
19python3 generative_recommenders/github/main.py \
20 --gin_config_file=generative_recommenders/github/configs/ml-20m/iter8-exp4-additive-lowdrop.gin \
21 --master_port=12300PRESERVATION_REPORT.md for the full reproducibility audit (including data preprocessing notes, env spec, and per-experiment metadata).| Bundle | NDCG@10 (FULL canonical, ep100) | Dataset | Model | Recipe |
|---|---|---|---|---|
iter8-exp4-SOTA.tar.gz ⭐ | 0.1948 (+2.80% paper) | ml-20m | BASE | PRISM-additive + IC + TD + dropout=0.1 |
iter8-exp1-HardNeg.tar.gz | 0.1920 (+1.32% paper) | ml-20m | BASE | PRISM-additive + IC + TD + HardNeg |
iter8-exp0-PopDebias.tar.gz | 0.1900 (+0.26% paper) | ml-20m | BASE | PRISM-additive + IC + TD + PopDebias |
iter7-exp1-PRISM-FILM-PopDebias-SOTA.tar.gz | 0.1912 (+0.90% paper) | ml-20m | BASE | PRISM-FILM + IC + TD + PopDebias |
iter7-exp2-PRISM-MoE.tar.gz | 0.1895 (paper match) | ml-20m | BASE | PRISM-MoE + IC + TD |
iter7-exp0-PRISM-FILM-HardNeg.tar.gz | 0.1880 (−0.79% paper) | ml-20m | BASE | PRISM-FILM + IC + TD + HardNeg |
iter7-exp5-l700.tar.gz | 0.1901 | ml-20m | BASE | PRISM-FILM + IC + TD, l=700 |
iter7-exp6-ml32m-base.tar.gz | 0.1508 | ml-32m | BASE | PRISM-additive + IC + TD (first ml-32m × BASE canonical result) |
1@misc{chen2026hstu_iter78,
2 title = {HSTU iter7+iter8 Preservation: PRISM-additive + low-dropout SOTA on MovieLens-20M},
3 author = {Chen, Tony},
4 year = {2026},
5 url = {https://huggingface.co/tzchen07/hstu-iter78-preservation},
6 note = {NDCG@10 0.1948 (+2.80\% over HSTU-base paper baseline)}
7}MANIFEST.md.