Datasets:
Update README: correct metadata.jsonl structure with file_name field
Browse files
README.md
CHANGED
|
@@ -79,16 +79,16 @@ MWS-Vision-Bench/
|
|
| 79 |
|
| 80 |
## 📋 Data Format
|
| 81 |
|
| 82 |
-
Each
|
| 83 |
|
| 84 |
```python
|
| 85 |
{
|
|
|
|
| 86 |
"id": "1", # Unique identifier
|
| 87 |
"type": "text grounding ru", # Task type
|
| 88 |
"dataset_name": "business", # Subdataset name
|
| 89 |
-
"image_path": "/business/scans/...", # Path to the image
|
| 90 |
"question": "...", # Question in Russian
|
| 91 |
-
"answers": [...]
|
| 92 |
}
|
| 93 |
```
|
| 94 |
|
|
|
|
| 79 |
|
| 80 |
## 📋 Data Format
|
| 81 |
|
| 82 |
+
Each line in `metadata.jsonl` contains one JSON object:
|
| 83 |
|
| 84 |
```python
|
| 85 |
{
|
| 86 |
+
"file_name": "images/image_0.jpg", # Path to the image
|
| 87 |
"id": "1", # Unique identifier
|
| 88 |
"type": "text grounding ru", # Task type
|
| 89 |
"dataset_name": "business", # Subdataset name
|
|
|
|
| 90 |
"question": "...", # Question in Russian
|
| 91 |
+
"answers": ["398", "65", ...] # List of valid answers (as strings)
|
| 92 |
}
|
| 93 |
```
|
| 94 |
|