wanderkid commited on
Commit
d2a5e02
1 Parent(s): b2e3821

Update README.md

Browse files

Update Huggingface links to organization account

Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -9,7 +9,7 @@ git lfs install
9
  To download the `PDF-Extract-Kit` model from Hugging Face, use the following command:
10
 
11
  ```bash
12
- git lfs clone https://huggingface.co/wanderkid/PDF-Extract-Kit
13
  ```
14
 
15
  Ensure that Git LFS is enabled during the clone to properly download all large files.
@@ -28,14 +28,14 @@ pip install modelscope
28
  ```python
29
  # Use the following Python code to download the model using the ModelScope SDK:
30
  from modelscope import snapshot_download
31
- model_dir = snapshot_download('wanderkid/PDF-Extract-Kit')
32
  ```
33
 
34
  #### Git Download
35
  Alternatively, you can use Git to clone the model repository from ModelScope:
36
 
37
  ```bash
38
- git clone https://www.modelscope.cn/wanderkid/PDF-Extract-Kit.git
39
  ```
40
 
41
 
 
9
  To download the `PDF-Extract-Kit` model from Hugging Face, use the following command:
10
 
11
  ```bash
12
+ git lfs clone https://huggingface.co/opendatalab/PDF-Extract-Kit
13
  ```
14
 
15
  Ensure that Git LFS is enabled during the clone to properly download all large files.
 
28
  ```python
29
  # Use the following Python code to download the model using the ModelScope SDK:
30
  from modelscope import snapshot_download
31
+ model_dir = snapshot_download('opendatalab/PDF-Extract-Kit')
32
  ```
33
 
34
  #### Git Download
35
  Alternatively, you can use Git to clone the model repository from ModelScope:
36
 
37
  ```bash
38
+ git clone https://www.modelscope.cn/opendatalab/PDF-Extract-Kit.git
39
  ```
40
 
41