Add language config usage examples to README
Browse files
README.md
CHANGED
|
@@ -119,6 +119,22 @@ configs:
|
|
| 119 |
This is the validation split - publicly available for open evaluation and comparison.
|
| 120 |
🧩 **Paper is coming soon.**
|
| 121 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 122 |
🔗 **Official repository:** [github.com/mts-ai/MWS-Vision-Bench](https://github.com/mts-ai/MWS-Vision-Bench)
|
| 123 |
🏢 **Organization:** [MTSAIR on Hugging Face](https://huggingface.co/MTSAIR)
|
| 124 |
📰 **Article on Habr (in Russian):** [“MWS Vision Bench — the first Russian business-OCR benchmark”](https://habr.com/ru/companies/mts_ai/articles/953292/)
|
|
|
|
| 119 |
This is the validation split - publicly available for open evaluation and comparison.
|
| 120 |
🧩 **Paper is coming soon.**
|
| 121 |
|
| 122 |
+
## Language Configs
|
| 123 |
+
|
| 124 |
+
This dataset provides three Hugging Face configs for the same benchmark split:
|
| 125 |
+
- `default` — Russian questions
|
| 126 |
+
- `en` — English questions
|
| 127 |
+
- `zh` — Chinese questions
|
| 128 |
+
|
| 129 |
+
```python
|
| 130 |
+
from datasets import load_dataset
|
| 131 |
+
|
| 132 |
+
vision_ru = load_dataset("MTSAIR/MWS-Vision-Bench")
|
| 133 |
+
vision_en = load_dataset("MTSAIR/MWS-Vision-Bench", "en")
|
| 134 |
+
vision_zh = load_dataset("MTSAIR/MWS-Vision-Bench", "zh")
|
| 135 |
+
```
|
| 136 |
+
|
| 137 |
+
|
| 138 |
🔗 **Official repository:** [github.com/mts-ai/MWS-Vision-Bench](https://github.com/mts-ai/MWS-Vision-Bench)
|
| 139 |
🏢 **Organization:** [MTSAIR on Hugging Face](https://huggingface.co/MTSAIR)
|
| 140 |
📰 **Article on Habr (in Russian):** [“MWS Vision Bench — the first Russian business-OCR benchmark”](https://habr.com/ru/companies/mts_ai/articles/953292/)
|