Datasets:
Modify README.md
Browse files
README.md
CHANGED
|
@@ -28,81 +28,83 @@ perception
|
|
| 28 |
├── cross_instance_discerment
|
| 29 |
│ ├── attribute_comparison
|
| 30 |
│ │ ├── images
|
|
|
|
| 31 |
│ │ └── attribute_comparison.json
|
| 32 |
│ ├── change_detection
|
| 33 |
│ │ ├── images
|
|
|
|
| 34 |
│ │ └── change_detection.json
|
| 35 |
│ ├── referring_expression_segmentation
|
| 36 |
│ │ ├── images
|
| 37 |
│ │ ├── masks
|
|
|
|
| 38 |
│ │ └── referring_expression_segmentation.json
|
| 39 |
│ └── spatial_relationship
|
| 40 |
│ ├── images
|
|
|
|
| 41 |
│ └── spatial_relationship.json
|
| 42 |
├── image_level_comprehension
|
| 43 |
│ ├── image_caption
|
| 44 |
│ │ ├── images
|
|
|
|
| 45 |
│ │ └── image_caption.json
|
| 46 |
│ ├── image_modality
|
| 47 |
│ │ ├── images
|
|
|
|
| 48 |
│ │ └── image_modality.json
|
| 49 |
│ ├── image_quality
|
| 50 |
│ │ ├── images
|
|
|
|
| 51 |
│ │ └── image_quality.json
|
| 52 |
│ ├── map_recognition
|
| 53 |
│ │ ├── images
|
|
|
|
| 54 |
│ │ └── map_recognition.json
|
| 55 |
│ └── scene_classification
|
| 56 |
│ ├── images
|
|
|
|
| 57 |
│ └── scene_classification.json
|
| 58 |
└── single_instance_identification
|
| 59 |
├── attribute_recognition
|
| 60 |
│ ├── images
|
|
|
|
| 61 |
│ └── attribute_recognition.json
|
| 62 |
├── hallucination_detection
|
| 63 |
│ ├── images
|
|
|
|
| 64 |
│ └── hallucination_detection.json
|
| 65 |
├── landmark_recognition
|
| 66 |
│ ├── images
|
|
|
|
| 67 |
│ └── landmark_recognition.json
|
| 68 |
├── object_counting
|
| 69 |
│ ├── images
|
|
|
|
| 70 |
│ └── object_counting.json
|
| 71 |
├── object_localization
|
| 72 |
│ ├── images
|
|
|
|
| 73 |
│ └── object_localization.json
|
| 74 |
├── object_presence
|
| 75 |
│ ├── images
|
|
|
|
| 76 |
│ └── object_presence.json
|
| 77 |
└── visual_grounding
|
| 78 |
├── images
|
|
|
|
| 79 |
└── visual_grounding.json
|
| 80 |
|
| 81 |
reasoning
|
| 82 |
├── assessment_reasoning
|
| 83 |
│ ├── environmental_assessment
|
| 84 |
│ │ ├── images
|
|
|
|
| 85 |
│ │ └── environmental_assessment.json
|
| 86 |
│ └── resource_assessment
|
| 87 |
│ ├── images
|
|
|
|
| 88 |
│ └── resource_assessment.json
|
| 89 |
-
├──
|
| 90 |
-
│ ├── physical_property
|
| 91 |
-
│ │ ├── images
|
| 92 |
-
│ │ └── physical_property.json
|
| 93 |
-
│ └── time_property
|
| 94 |
-
│ ├── images
|
| 95 |
-
│ └── time_property.json
|
| 96 |
-
└── common_sense_reasoning
|
| 97 |
-
├── disaster_discrimination
|
| 98 |
-
│ ├── images
|
| 99 |
-
│ └── disaster_discrimination.json
|
| 100 |
-
├── geospatial_determination
|
| 101 |
-
│ ├── images
|
| 102 |
-
│ └── geospatial_determination.json
|
| 103 |
-
└── situation_inference
|
| 104 |
-
├── images
|
| 105 |
-
└── situation_inference.json
|
| 106 |
|
| 107 |
```
|
| 108 |
|
|
@@ -115,7 +117,7 @@ An example of the Multiple-Choice Question (MCQ) is as follows:
|
|
| 115 |
```json
|
| 116 |
{
|
| 117 |
"id": "ef8777ba-27ee-4828-aab5-63214daf340d",
|
| 118 |
-
"image_path": "images/1.png",
|
| 119 |
"question": "Count the number of airplane present in this image.\nA.2\nB.1\nC.4\nD.3",
|
| 120 |
"answer": "A"
|
| 121 |
}
|
|
|
|
| 28 |
├── cross_instance_discerment
|
| 29 |
│ ├── attribute_comparison
|
| 30 |
│ │ ├── images
|
| 31 |
+
│ │ ├── metadata.jsonl
|
| 32 |
│ │ └── attribute_comparison.json
|
| 33 |
│ ├── change_detection
|
| 34 |
│ │ ├── images
|
| 35 |
+
│ │ ├── metadata.jsonl
|
| 36 |
│ │ └── change_detection.json
|
| 37 |
│ ├── referring_expression_segmentation
|
| 38 |
│ │ ├── images
|
| 39 |
│ │ ├── masks
|
| 40 |
+
│ │ ├── metadata.jsonl
|
| 41 |
│ │ └── referring_expression_segmentation.json
|
| 42 |
│ └── spatial_relationship
|
| 43 |
│ ├── images
|
| 44 |
+
│ ├── metadata.jsonl
|
| 45 |
│ └── spatial_relationship.json
|
| 46 |
├── image_level_comprehension
|
| 47 |
│ ├── image_caption
|
| 48 |
│ │ ├── images
|
| 49 |
+
│ │ ├── metadata.jsonl
|
| 50 |
│ │ └── image_caption.json
|
| 51 |
│ ├── image_modality
|
| 52 |
│ │ ├── images
|
| 53 |
+
│ │ ├── metadata.jsonl
|
| 54 |
│ │ └── image_modality.json
|
| 55 |
│ ├── image_quality
|
| 56 |
│ │ ├── images
|
| 57 |
+
│ │ ├── metadata.jsonl
|
| 58 |
│ │ └── image_quality.json
|
| 59 |
│ ├── map_recognition
|
| 60 |
│ │ ├── images
|
| 61 |
+
│ │ ├── metadata.jsonl
|
| 62 |
│ │ └── map_recognition.json
|
| 63 |
│ └── scene_classification
|
| 64 |
│ ├── images
|
| 65 |
+
│ ├── metadata.jsonl
|
| 66 |
│ └── scene_classification.json
|
| 67 |
└── single_instance_identification
|
| 68 |
├── attribute_recognition
|
| 69 |
│ ├── images
|
| 70 |
+
│ ├── metadata.jsonl
|
| 71 |
│ └── attribute_recognition.json
|
| 72 |
├── hallucination_detection
|
| 73 |
│ ├── images
|
| 74 |
+
│ ├── metadata.jsonl
|
| 75 |
│ └── hallucination_detection.json
|
| 76 |
├── landmark_recognition
|
| 77 |
│ ├── images
|
| 78 |
+
│ ├── metadata.jsonl
|
| 79 |
│ └── landmark_recognition.json
|
| 80 |
├── object_counting
|
| 81 |
│ ├── images
|
| 82 |
+
│ ├── metadata.jsonl
|
| 83 |
│ └── object_counting.json
|
| 84 |
├── object_localization
|
| 85 |
│ ├── images
|
| 86 |
+
│ ├── metadata.jsonl
|
| 87 |
│ └── object_localization.json
|
| 88 |
├── object_presence
|
| 89 |
│ ├── images
|
| 90 |
+
│ ├── metadata.jsonl
|
| 91 |
│ └── object_presence.json
|
| 92 |
└── visual_grounding
|
| 93 |
├── images
|
| 94 |
+
├── metadata.jsonl
|
| 95 |
└── visual_grounding.json
|
| 96 |
|
| 97 |
reasoning
|
| 98 |
├── assessment_reasoning
|
| 99 |
│ ├── environmental_assessment
|
| 100 |
│ │ ├── images
|
| 101 |
+
│ │ ├── metadata.jsonl
|
| 102 |
│ │ └── environmental_assessment.json
|
| 103 |
│ └── resource_assessment
|
| 104 |
│ ├── images
|
| 105 |
+
│ ├── metadata.jsonl
|
| 106 |
│ └── resource_assessment.json
|
| 107 |
+
├── ......
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
|
| 109 |
```
|
| 110 |
|
|
|
|
| 117 |
```json
|
| 118 |
{
|
| 119 |
"id": "ef8777ba-27ee-4828-aab5-63214daf340d",
|
| 120 |
+
"image_path": "perception/single_instance_identification/object_counting/images/1.png",
|
| 121 |
"question": "Count the number of airplane present in this image.\nA.2\nB.1\nC.4\nD.3",
|
| 122 |
"answer": "A"
|
| 123 |
}
|