Views
No views yet
SASRec/: SASRec checkpoints (.pth)TIGER/: TIGER checkpoints (.pth)semantic_ids/: semantic ID files (.sem_ids) used to train the corresponding TIGER checkpointshuggingface_hub library to download specific checkpoints and semantic ID files:1from huggingface_hub import hf_hub_download
2
3repo_id = "jamesding0302/memgen-checkpoints"
4out_dir = "./downloads" # change this to desired output path
5
6ckpt_path = hf_hub_download(
7 repo_id=repo_id,
8 filename="TIGER/TIGER-AmazonReviews2014-category_Sports_and_Outdoors.pth",
9 local_dir=out_dir,
10)
11
12sem_ids_path = hf_hub_download(
13 repo_id=repo_id,
14 filename="semantic_ids/AmazonReviews2014-Sports_and_Outdoors_sentence-t5-base_256,256,256,256.sem_ids",
15 local_dir=out_dir,
16)checkpoint_path and sem_ids_path with the scripts provided in the official repository:1CUDA_VISIBLE_DEVICES=0 python mem_gen_evaluation.py \
2 --model=TIGER \
3 --dataset=AmazonReviews2014 \
4 --category=Sports_and_Outdoors \
5 --checkpoint_path=path/to/TIGER.pth \
6 --sem_ids_path=path/to/semantic_ids.sem_ids \
7 --eval=test \
8 --save_inference1@article{ding2026generalize,
2 title={How Well Does Generative Recommendation Generalize?},
3 author={Ding, Yijie and Guo, Zitian and Li, Jiacheng and Peng, Letian and Shao, Shuai and Shao, Wei and Luo, Xiaoqiang and Simon, Luke and Shang, Jingbo and McAuley, Julian and Hou, Yupeng},
4 journal={arXiv preprint arXiv:2603.19809},
5 year={2026}
6}