KumaPower commited on
Commit
3dfdd27
·
verified ·
1 Parent(s): 526cdcf

Add download tracking config and download instructions

Browse files
Files changed (2) hide show
  1. README.md +21 -1
  2. config.json +14 -0
README.md CHANGED
@@ -17,6 +17,26 @@ This repository hosts checkpoints for **OPSD-V: On-Policy Self-Distillation for
17
  - Paper: https://kumapowerliu.github.io/opsd-v/assets/opsdv.pdf
18
  - Code: https://github.com/MeiGen-AI/opsd-v
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  ## Files
21
 
22
  | Path | Description |
@@ -29,7 +49,7 @@ This repository hosts checkpoints for **OPSD-V: On-Policy Self-Distillation for
29
 
30
  ## Usage
31
 
32
- Please place these files under the `checkpoints/` directory of the OPSD-V code release and use the provided training or inference configs.
33
 
34
  ```text
35
  checkpoints/
 
17
  - Paper: https://kumapowerliu.github.io/opsd-v/assets/opsdv.pdf
18
  - Code: https://github.com/MeiGen-AI/opsd-v
19
 
20
+ ## Download
21
+
22
+ Install the Hugging Face Hub CLI and download the complete checkpoint repository into the root of the OPSD-V code release:
23
+
24
+ ```bash
25
+ pip install -U "huggingface_hub[cli]"
26
+ hf download MeiGen-AI/OPSD-V --local-dir .
27
+ ```
28
+
29
+ Alternatively, use Python:
30
+
31
+ ```python
32
+ from huggingface_hub import snapshot_download
33
+
34
+ snapshot_download(
35
+ repo_id="MeiGen-AI/OPSD-V",
36
+ local_dir=".",
37
+ )
38
+ ```
39
+
40
  ## Files
41
 
42
  | Path | Description |
 
49
 
50
  ## Usage
51
 
52
+ Place these files under the `checkpoints/` directory of the OPSD-V code release and use the provided training or inference configs.
53
 
54
  ```text
55
  checkpoints/
config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "OPSD-V",
3
+ "repository": "MeiGen-AI/OPSD-V",
4
+ "task": "text-to-video",
5
+ "framework": "pytorch",
6
+ "method": "on-policy-self-distillation",
7
+ "checkpoints": {
8
+ "longlive_base": "checkpoints/longlive_base.pt",
9
+ "longlive_lora": "checkpoints/longlive_lora.pt",
10
+ "opsdv_longlive_lora": "checkpoints/opsdv_longlive_lora.pt",
11
+ "self_forcing_dmd_ema_as_generator": "checkpoints/self_forcing_dmd_ema_as_generator.pt",
12
+ "opsdv_self_forcing_lora": "checkpoints/opsdv_self_forcing_lora.pt"
13
+ }
14
+ }