Add paper link, GitHub link, and task category

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +25 -7
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- license: cc-by-sa-4.0
3
  language: en
 
 
 
4
  tags:
5
  - image-classification
6
  - computer-vision
7
  - year-prediction
 
8
  configs:
9
  - config_name: default
10
  data_files:
@@ -43,7 +46,7 @@ dataset_info:
43
  - name: test
44
  num_bytes: 218467609.984
45
  num_examples: 11087
46
- - name: valid
47
  num_bytes: 218291058.874
48
  num_examples: 11122
49
  - name: wiki_dataset
@@ -55,6 +58,8 @@ dataset_info:
55
 
56
  # YearGuessr Dataset
57
 
 
 
58
  This dataset, `Morris0401/Year-Guessr-Dataset`, is a comprehensive and large-scale collection of architectural images and associated metadata, designed for global building age estimation, specifically treating age as an ordinal variable. It provides an unprecedented benchmark for evaluating building visual recognition, cross-regional generalization, and multi-modal reasoning tasks.
59
 
60
  ## Motivation and Background
@@ -120,10 +125,6 @@ The complete feature set across all splits is:
120
  - `Views`: Number of Wikipedia page views (integer, if available), useful for popularity analysis.
121
  - `Description`: A general textual description of the building (string, if available).
122
 
123
- ### Additional Files
124
- - **`images_metadata.parquet`**: Metadata for all images in the `images/` directory, including `image_path`, `partition`, and `filename`.
125
- - **`csv/` Directory**: Contains raw CSV files (`train.csv`, `test.csv`, `valid.csv`, `wiki_dataset.csv`) for reference.
126
-
127
  ### Image Directory
128
  - **`images/`**: Contains image files organized in subdirectories (e.g., `part_1/`, `part_2/`, ..., `part_8/`) with `.jpg` files.
129
  - Example path: `images/part_1/1.jpg`.
@@ -137,4 +138,21 @@ You can load the dataset using the Hugging Face `datasets` library:
137
  from datasets import load_dataset
138
 
139
  dataset = load_dataset("Morris0401/Year-Guessr-Dataset")
140
- print(dataset)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
2
  language: en
3
+ license: cc-by-sa-4.0
4
+ task_categories:
5
+ - image-text-to-text
6
  tags:
7
  - image-classification
8
  - computer-vision
9
  - year-prediction
10
+ arxiv: 2512.21337
11
  configs:
12
  - config_name: default
13
  data_files:
 
46
  - name: test
47
  num_bytes: 218467609.984
48
  num_examples: 11087
49
+ - name: validMagic
50
  num_bytes: 218291058.874
51
  num_examples: 11122
52
  - name: wiki_dataset
 
58
 
59
  # YearGuessr Dataset
60
 
61
+ [**Project Page**](https://sytwu.github.io/BeyondMemo/) | [**Paper**](https://huggingface.co/papers/2512.21337) | [**GitHub**](https://github.com/Sytwu/BeyondMemo)
62
+
63
  This dataset, `Morris0401/Year-Guessr-Dataset`, is a comprehensive and large-scale collection of architectural images and associated metadata, designed for global building age estimation, specifically treating age as an ordinal variable. It provides an unprecedented benchmark for evaluating building visual recognition, cross-regional generalization, and multi-modal reasoning tasks.
64
 
65
  ## Motivation and Background
 
125
  - `Views`: Number of Wikipedia page views (integer, if available), useful for popularity analysis.
126
  - `Description`: A general textual description of the building (string, if available).
127
 
 
 
 
 
128
  ### Image Directory
129
  - **`images/`**: Contains image files organized in subdirectories (e.g., `part_1/`, `part_2/`, ..., `part_8/`) with `.jpg` files.
130
  - Example path: `images/part_1/1.jpg`.
 
138
  from datasets import load_dataset
139
 
140
  dataset = load_dataset("Morris0401/Year-Guessr-Dataset")
141
+ print(dataset)
142
+ ```
143
+
144
+ ## Citation
145
+
146
+ If you find this dataset helpful, please consider citing:
147
+
148
+ ```bibtex
149
+ @misc{szutu2025memorizationmultimodalordinalregression,
150
+ title={Beyond Memorization: A Multi-Modal Ordinal Regression Benchmark to Expose Popularity Bias in Vision-Language Models},
151
+ author={Li-Zhong Szu-Tu and Ting-Lin Wu and Chia-Jui Chang and He Syu and Yu-Lun Liu},
152
+ year={2025},
153
+ eprint={2512.21337},
154
+ archivePrefix={arXiv},
155
+ primaryClass={cs.CV},
156
+ url={https://arxiv.org/abs/2512.21337},
157
+ }
158
+ ```