lihzha commited on
Commit
601db9c
·
1 Parent(s): af2d5a2
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -36,13 +36,13 @@ pip install -U huggingface_hub
36
  Download the checkpoint to the expected directory:
37
 
38
  ```bash
39
- hf download lihzha/LAP-3B --local-dir ./checkpoint/lap
40
  ```
41
 
42
  After downloading, the checkpoint will be located at:
43
 
44
  ```
45
- ./checkpoint/lap
46
  ```
47
 
48
  This matches the default path expected by the LAP codebase.
@@ -56,7 +56,7 @@ from huggingface_hub import snapshot_download
56
 
57
  snapshot_download(
58
  repo_id="lihzha/LAP-3B",
59
- local_dir="./checkpoint/lap"
60
  )
61
  ```
62
 
 
36
  Download the checkpoint to the expected directory:
37
 
38
  ```bash
39
+ hf download lihzha/LAP-3B --local-dir ./checkpoints/lap
40
  ```
41
 
42
  After downloading, the checkpoint will be located at:
43
 
44
  ```
45
+ ./checkpoints/lap
46
  ```
47
 
48
  This matches the default path expected by the LAP codebase.
 
56
 
57
  snapshot_download(
58
  repo_id="lihzha/LAP-3B",
59
+ local_dir="./checkpoints/lap"
60
  )
61
  ```
62