Datasets:

Modalities:
Image
Text
Formats:
parquet
Languages:
English
License:
fgrezes commited on
Commit
68e8d0c
·
verified ·
1 Parent(s): dcbcc07

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -7
README.md CHANGED
@@ -53,20 +53,34 @@ In partnership with [astroexplorer.org](https://www.astroexplorer.org/), we offe
53
 
54
  ![AstroCLIMB image: these figures come from the same astronomy paper. Courtesy of astroexplorer.org](https://ui.adsabs.harvard.edu/WIESP/2026/AstroCLIMB_001.png)
55
 
56
- ### Dataset
57
  The dataset consists of over 100K figure+caption pairs from the [astroexplorer.org](https://www.astroexplorer.org/) from recent open access astronomy papers. More details to come.
 
 
 
 
 
 
 
 
 
 
 
 
58
 
59
  ### Task Description
60
  The goal of the task is single-class classification.
61
  The inputs are pairs of figures, a figure and a caption, or a pair of captions.
62
- The possible classes are:
63
- - `"same paper"`
64
- - `"different paper but related"` (cited/citing)
65
- - `"unrelated"`
66
- - `"same figure"` (only for figure+caption pairs)
 
 
67
 
68
  ### Contact
69
- For inquiries, contact Felix Grezes at [felix.grezes@cfa.harvard.edu](mailto:felix.grezes@cfa.harvard.edu)
70
 
71
 
72
 
 
53
 
54
  ![AstroCLIMB image: these figures come from the same astronomy paper. Courtesy of astroexplorer.org](https://ui.adsabs.harvard.edu/WIESP/2026/AstroCLIMB_001.png)
55
 
56
+ ### Dataset Description
57
  The dataset consists of over 100K figure+caption pairs from the [astroexplorer.org](https://www.astroexplorer.org/) from recent open access astronomy papers. More details to come.
58
+ ```
59
+ Dataset({
60
+ features: ['image', 'UUID', 'Image ID', 'Paper DOI', 'Paper Title', 'Image Caption', 'Image Authors', 'References DOIs', 'Citing DOIs'],
61
+ num_rows: 94233
62
+ })
63
+ ```
64
+ (test set to be released in November 2026)
65
+ - `images` are stored as PIL PNG objects.
66
+ - `Image Caption` are English language text.
67
+ - `UUID`, `Image ID`, `Paper DOI`, `Paper Title` are metadata.
68
+
69
+ A more complete descriptions of the dataset can be found on the WASP2026 website [here](https://ui.adsabs.harvard.edu/WIESP/2026/shared_task_labels).
70
 
71
  ### Task Description
72
  The goal of the task is single-class classification.
73
  The inputs are pairs of figures, a figure and a caption, or a pair of captions.
74
+ The possible output classes are:
75
+ - `same paper`
76
+ - `related papers` (references or citing)
77
+ - `unrelated papers` (neither references nor citing)
78
+ - `same figure` (only for figure+caption pairs)
79
+
80
+ The challenge is being evaluated on Kaggle [here](https://www.kaggle.com/competitions/astroclimb/overview).
81
 
82
  ### Contact
83
+ For inquiries, contact Felix Grezes at [felix.grezes@cfa.harvard.edu](mailto:felix.grezes@cfa.harvard.edu).
84
 
85
 
86