GeorgyG commited on
Commit
ccefdad
·
verified ·
1 Parent(s): 9453e3f

Update README: correct metadata.jsonl structure with file_name field

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -79,16 +79,16 @@ MWS-Vision-Bench/
79
 
80
  ## 📋 Data Format
81
 
82
- Each entry in `metadata.jsonl` follows this structure:
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": [...] # List of valid 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