diff --git a/demo/TabRec/StructEqTable/README_TABLE.md b/demo/TabRec/StructEqTable/README_TABLE.md index 51e0139..a95f567 100644 --- a/demo/TabRec/StructEqTable/README_TABLE.md +++ b/demo/TabRec/StructEqTable/README_TABLE.md @@ -13,7 +13,7 @@ In addition, the current version of the model **supports both Chinese and Englis See [MinerU](https://github.com/opendatalab/MinerU) for the final end-to-end solution, which will integrate the table recognition within a week. ## Model Download -The weights file for StructEqTable can be downloaded from [modelscope](https://www.modelscope.cn/models/wanderkid/PDF-Extract-Kit/files) and [huggingface](https://huggingface.co/wanderkid/PDF-Extract-Kit/tree/main/models/TabRec/StructEqTable) +The weights file for StructEqTable can be downloaded from [modelscope](https://www.modelscope.cn/models/opendatalab/PDF-Extract-Kit/files) and [huggingface](https://huggingface.co/opendatalab/PDF-Extract-Kit/tree/main/models/TabRec/StructEqTable) Put model files here: diff --git a/models/README.md b/models/README.md index 6c1be21..84501b8 100644 --- a/models/README.md +++ b/models/README.md @@ -9,7 +9,7 @@ git lfs install To download the `PDF-Extract-Kit` model from Hugging Face, use the following command: ```bash -git lfs clone https://huggingface.co/wanderkid/PDF-Extract-Kit +git lfs clone https://huggingface.co/opendatalab/PDF-Extract-Kit ``` Ensure that Git LFS is enabled during the clone to properly download all large files. @@ -28,14 +28,14 @@ pip install modelscope ```python # Use the following Python code to download the model using the ModelScope SDK: from modelscope import snapshot_download -model_dir = snapshot_download('wanderkid/PDF-Extract-Kit') +model_dir = snapshot_download('opendatalab/PDF-Extract-Kit') ``` #### Git Download Alternatively, you can use Git to clone the model repository from ModelScope: ```bash -git clone https://www.modelscope.cn/wanderkid/PDF-Extract-Kit.git +git clone https://www.modelscope.cn/opendatalab/PDF-Extract-Kit.git ```