Datasets:
Update README: fix badges and add cross-platform download instructions
Browse files- Fix broken HuggingFace badge URL
- Add ModelScope badge
- Replace ModelScope-specific :modelscope-code[] syntax with standard markdown code blocks
- Add download instructions for both HuggingFace and ModelScope
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
license:
|
| 3 |
tags:
|
| 4 |
- 文档解析
|
| 5 |
- 文档智能
|
|
@@ -104,7 +104,29 @@ DocParsingBench是一个包含1400张图片的文档智能测评数据集,系
|
|
| 104 |
> 🌟 如果您觉得这个数据集有价值,欢迎在 modelscope/Hugging Face 上给我们 ⭐!
|
| 105 |
|
| 106 |
|
| 107 |
-
#### 下载方法
|
| 108 |
-
|
| 109 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
|
|
|
|
| 1 |
---
|
| 2 |
+
license: odc-by
|
| 3 |
tags:
|
| 4 |
- 文档解析
|
| 5 |
- 文档智能
|
|
|
|
| 104 |
> 🌟 如果您觉得这个数据集有价值,欢迎在 modelscope/Hugging Face 上给我们 ⭐!
|
| 105 |
|
| 106 |
|
| 107 |
+
#### 下载方法
|
| 108 |
+
|
| 109 |
+
**🤗 Hugging Face**
|
| 110 |
+
|
| 111 |
+
```python
|
| 112 |
+
from datasets import load_dataset
|
| 113 |
+
ds = load_dataset("SoMarkAI/DocParsingBench")
|
| 114 |
+
```
|
| 115 |
+
|
| 116 |
+
**☁️ ModelScope**
|
| 117 |
+
|
| 118 |
+
```python
|
| 119 |
+
from modelscope.msdatasets import MsDataset
|
| 120 |
+
ds = MsDataset.load('SoMark/DocParsingBench')
|
| 121 |
+
```
|
| 122 |
+
|
| 123 |
+
**Git Clone**
|
| 124 |
+
|
| 125 |
+
```bash
|
| 126 |
+
# Hugging Face
|
| 127 |
+
git clone https://huggingface.co/datasets/SoMarkAI/DocParsingBench
|
| 128 |
+
|
| 129 |
+
# ModelScope
|
| 130 |
+
git clone https://www.modelscope.cn/datasets/SoMark/DocParsingBench.git
|
| 131 |
+
```
|
| 132 |
|