junchenfu commited on
Commit
e40cf31
·
verified ·
1 Parent(s): 1cd8085

Remove stage-specific wording from model card

Browse files
Files changed (1) hide show
  1. README.md +36 -36
README.md CHANGED
@@ -1,52 +1,52 @@
1
  ---
2
- license: mit
3
- language: en
4
  tags:
5
- - recommendation
6
- - rq-vae
7
- - stage-2
8
- - diger
9
- - arxiv:2601.19711
 
10
  ---
11
 
12
- # DIGER RQ-VAE Stage-2 Checkpoint (instruments)
13
 
14
- This repository provides the Stage-2 RQ-VAE checkpoint for **instruments** used in the paper:
15
- *Fu et al., "Differentiable Semantic ID for Generative Recommendation" (arXiv:2601.19711, 2026)*.
 
16
 
17
  ## Files
18
 
19
- - `best_collision_model.pth`: Stage-2 checkpoint from the DIGER RQ-VAE pretraining pipeline.
 
 
20
 
21
- ## Checkpoint settings
22
 
23
- - epochs: 10000
24
- - batch_size: 2048
25
- - lr: 1e-3
26
- - weight_decay: 1e-4
27
- - e_dim: 256
28
- - num_emb_list: [256, 256, 256]
29
- - layers: [2048, 1024, 512]
30
- - beta: 0.25
31
- - sk_epsilons: [0.003, 0.003, 0.003]
32
- - sk_iters: 50
33
- - vq_type: vq
34
- - loss_type: mse
35
- - dist: l2
36
 
37
- ## Code
 
 
 
 
38
 
39
- Code and scripts are in the DIGER repository:
40
 
41
- - https://github.com/junchen-fu/DIGER
42
 
43
- Embedding inputs used for this stage follow the procedure described in:
44
- - https://github.com/honghuibao2000/letter
45
 
46
- ## How to load
47
 
48
- ```python
49
- import torch
50
- ckpt = torch.load('best_collision_model.pth', map_location='cpu')
51
- print(ckpt.keys())
52
- ```
 
 
 
 
 
 
 
1
  ---
 
 
2
  tags:
3
+ - diger
4
+ - rq-vae
5
+ - generative-recommendation
6
+ - semantic-id
7
+ - recommendation
8
+ pipeline_tag: feature-extraction
9
  ---
10
 
11
+ # DIGER RQ-VAE Checkpoint (instruments)
12
 
13
+ This repository provides the pretrained RQ-VAE checkpoint for **instruments** used in the paper:
14
+
15
+ **DIGER: Differentiable Semantic IDs for Generative Recommendation**
16
 
17
  ## Files
18
 
19
+ - `best_collision_model.pth`: released checkpoint from the DIGER RQ-VAE pretraining pipeline.
20
+
21
+ ## Usage
22
 
23
+ Download with `huggingface_hub`:
24
 
25
+ ```python
26
+ from huggingface_hub import hf_hub_download
 
 
 
 
 
 
 
 
 
 
 
27
 
28
+ ckpt_path = hf_hub_download(
29
+ repo_id="junchenfu/diger-rqvae-instruments",
30
+ filename="best_collision_model.pth",
31
+ )
32
+ ```
33
 
34
+ The checkpoint can be loaded with the RQ-VAE implementation in the DIGER GitHub repository:
35
 
36
+ https://github.com/junchen-fu/DIGER
37
 
38
+ Please refer to the repository README for the full training configuration and commands.
 
39
 
40
+ ## Embeddings
41
 
42
+ LLaMA embeddings used by DIGER should be generated following the procedure described in:
43
+
44
+ https://github.com/honghuibao2000/letter
45
+
46
+ ## Dataset Note
47
+
48
+ The underlying recommendation datasets are publicly available from their original sources. Processed interaction data are not hosted in this model repository; they can be regenerated following the DIGER codebase.
49
+
50
+ ## Citation
51
+
52
+ If you use this checkpoint, please cite the DIGER paper.