yobro4619 commited on
Commit
4f62977
·
verified ·
1 Parent(s): f0ae5b5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +87 -21
README.md CHANGED
@@ -1,23 +1,89 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: question_id
5
- dtype: string
6
- - name: jpg
7
- dtype: image
8
- - name: question
9
- dtype: string
10
- - name: groundtruth
11
- dtype: string
12
- splits:
13
- - name: train
14
- num_bytes: 1865606658
15
- num_examples: 1840
16
- download_size: 1864989941
17
- dataset_size: 1865606658
18
- configs:
19
- - config_name: default
20
- data_files:
21
- - split: train
22
- path: data/train-*
23
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ task_categories:
3
+ - visual-question-answering
4
+ - object-detection
5
+ language:
6
+ - en
7
+ tags:
8
+ - remote-sensing
9
+ - geospatial
10
+ - satellite-imagery
11
+ size_categories:
12
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
13
  ---
14
+
15
+ # GeoChat_bench_split Dataset
16
+
17
+ ## Dataset Description
18
+
19
+ This dataset is a curated subset of the GeoChat_Bench benchmark from the EarthDial-Dataset, specifically containing samples with multiple ground truth bounding boxes.
20
+
21
+ ### Dataset Summary
22
+
23
+ - **Total Samples:** 1,840
24
+ - **Source:** akshaydudhane/EarthDial-Dataset (GeoChat_Bench subset)
25
+ - **Task:** Visual grounding / object localization in satellite imagery
26
+ - **Modality:** Image (RGB) + Text
27
+
28
+ ### Dataset Structure
29
+
30
+ The dataset contains 4 columns:
31
+
32
+ 1. **question_id** (string): Unique identifier for each sample
33
+ 2. **jpg** (Image): RGB satellite/aerial image
34
+ 3. **question** (string): Question asking for object locations (format: "Give me the location of <ref>object description")
35
+ 4. **groundtruth** (string): Multiple bounding box coordinates in the format `[[x1,y1,x2,y2,confidence]][[x1,y1,x2,y2,confidence]]...`
36
+
37
+ ### Data Fields
38
+
39
+ - `question_id`: Unique sample identifier
40
+ - `jpg`: PIL Image object in RGB format
41
+ - `question`: Natural language question with reference tags
42
+ - `groundtruth`: Serialized list of bounding boxes
43
+
44
+ ### Example
45
+
46
+ ```python
47
+ {
48
+ 'question_id': 'sota_2403',
49
+ 'jpg': <PIL.Image>,
50
+ 'question': 'Give me the location of <ref>10 large small-vehicles',
51
+ 'groundtruth': '[[20, 43, 27, 53, 90]][[5, 38, 11, 47, 90]]...'
52
+ }
53
+ ```
54
+
55
+ ## Dataset Creation
56
+
57
+ ### Curation Process
58
+
59
+ 1. Loaded GeoChat_Bench from EarthDial-Dataset
60
+ 2. Filtered samples containing multiple bounding boxes in ground truth (>1 list)
61
+ 3. Sorted by number of bounding boxes in descending order
62
+ 4. Selected top 1,840 samples (all available samples with multiple boxes)
63
+ 5. Cleaned question text to remove formatting prefixes and tags
64
+
65
+ ### Source Data
66
+
67
+ Original dataset: [EarthDial-Dataset](https://huggingface.co/datasets/akshaydudhane/EarthDial-Dataset)
68
+
69
+ ## Usage
70
+
71
+ ```python
72
+ from datasets import load_dataset
73
+
74
+ # Load the dataset
75
+ dataset = load_dataset("yobro4619/GeoChat_bench_split")
76
+
77
+ # Access samples
78
+ sample = dataset['train'][0]
79
+ print(sample['question'])
80
+ print(sample['groundtruth'])
81
+ ```
82
+
83
+ ## License
84
+
85
+ Please refer to the original [EarthDial-Dataset](https://huggingface.co/datasets/akshaydudhane/EarthDial-Dataset) for licensing information.
86
+
87
+ ## Citation
88
+
89
+ If you use this dataset, please cite the original EarthDial-Dataset paper.