Update README.md
Browse filesUpdate Huggingface links to organization account
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/
|
| 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('
|
| 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/
|
| 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 |
|