LibraTree commited on
Commit
2cc56ed
·
verified ·
1 Parent(s): 6c8057a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -31
README.md CHANGED
@@ -21,45 +21,17 @@ configs:
21
 
22
  # GeoBench (GeoVista Bench)
23
 
24
- GeoBench is a collection of real-world panoramas with rich metadata for evaluating geolocation models. Each sample corresponds to one panorama identified by its `uid` and includes both the original high-resolution imagery and a lightweight preview for rapid inspection.
25
 
26
- ## Dataset Structure
27
-
28
- - `id`: unique identifier (same as `uid` from the original data).
29
- - `raw_image_path`: relative path (within this repo) to the source panorama under `raw_image/<uid>/`.
30
- - `preview`: compressed JPEG preview (<=1M pixels) under `preview_image/<uid>/`. This is used by HF Dataset Viewer.
31
- - `metadata`: JSON object storing capture timestamp, location, pano_id, city, and other attributes. Downstream users can parse it to obtain lat/lng, city names, multi-level location tags, etc.
32
- - `data_type`: string describing the imagery type. If absent in metadata it defaults to `panorama`.
33
-
34
- All samples are stored in a Hugging Face-compatible parquet file at `data/<split>/data-00000-of-00001.parquet`, with additional metadata in `dataset_info.json`.
35
-
36
- ## Working with GeoBench
37
-
38
- 1. Clone/download this folder (or pull it via `huggingface_hub`).
39
- 2. Load the parquet file using Python:
40
- ```python
41
- from datasets import load_dataset
42
-
43
- ds = load_dataset('path/to/this/folder', split='train')
44
- sample = ds[0]
45
- ``
46
- `sample["preview"]` loads directly as a PIL image; `sample["raw_image_path"]` points to the higher-quality file if needed.
47
- 3. Use the metadata to drive evaluation logic, e.g., compute city-level accuracy, filter by `data_type`, or inspect specific regions.
48
-
49
- ## Notes
50
-
51
- - Raw panoramas retain original filenames to preserve provenance.
52
- - Preview images are resized to reduce storage costs while remaining representative of the scene.
53
- - Ensure you comply with the dataset’s license (`dataset_info.json`) when sharing or modifying derived works.
54
 
55
  ## Related Resources
56
 
57
- • GeoVista model (RL-trained agentic VLM used in the paper):
58
- https://huggingface.co/LibraTree/GeoVista
59
  • GeoVista-Bench (previewable variant):
60
  A companion dataset with resized JPEG previews intended to make image preview easier in the Hugging Face dataset viewer:
61
  https://huggingface.co/datasets/LibraTree/GeoVistaBench
62
  (Same underlying benchmark; different packaging / image formats.)
 
63
  • Paper page on Hugging Face:
64
  https://huggingface.co/papers/2511.15705
65
 
 
21
 
22
  # GeoBench (GeoVista Bench)
23
 
24
+ GeoVistaBench is a collection of real-world panoramas with rich metadata for evaluating geolocation models. Each sample is a single image uniquely identified by a uid and includes both the original high-resolution panorama and a lightweight preview for fast inspection.
25
 
26
+ For the latest previewable version, please visit: https://huggingface.co/datasets/LibraTree/GeoVistaBench
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
  ## Related Resources
29
 
 
 
30
  • GeoVista-Bench (previewable variant):
31
  A companion dataset with resized JPEG previews intended to make image preview easier in the Hugging Face dataset viewer:
32
  https://huggingface.co/datasets/LibraTree/GeoVistaBench
33
  (Same underlying benchmark; different packaging / image formats.)
34
+
35
  • Paper page on Hugging Face:
36
  https://huggingface.co/papers/2511.15705
37