Add task categories and paper references to dataset card

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +56 -34
README.md CHANGED
@@ -1,48 +1,49 @@
1
  ---
2
- pretty_name: "Galaxy10 AION-1 Benchmark"
3
  license: mit
4
-
5
- tags:
6
- - astronomy
7
- - galaxy-morphology
8
- - aion
9
- - galaxy-zoo
10
-
11
  size_categories:
12
- - 1K<n<10K
13
-
 
 
 
 
 
14
  configs:
15
- - config_name: default
16
- data_files:
17
- - split: train
18
- path: data/train-*.parquet
19
- - split: test
20
- path: data/test-*.parquet
21
-
22
  dataset_info:
23
  features:
24
- - name: image_rgb
25
- dtype: image
26
- - name: ra
27
- dtype: float64
28
- - name: dec
29
- dtype: float64
30
- - name: Galaxy10_DECals_index
31
- dtype: int64
32
- - name: label
33
- dtype: int64
34
- - name: label_name
35
- dtype: string
36
- - name: image_bands
 
37
  list:
38
  list:
39
- list:
40
- dtype: float32
41
  ---
42
 
43
  # Galaxy10 AION-1 Benchmark
44
 
45
- This dataset provides the exact train/test split used to produce the Galaxy Morphology Classification results in the [AION-1 paper](https://arxiv.org/abs/2510.17960) (Table 2, Section 7.2.2) and used in the [AION-Search paper](https://arxiv.org/abs/2512.11982).
 
 
 
46
 
47
  ## Task
48
 
@@ -92,6 +93,28 @@ cutout = np.array(row["image_bands"], dtype=np.float32) # (4, 96, 96)
92
  # cutout[0] = g-band, cutout[1] = r-band, cutout[2] = i-band, cutout[3] = z-band
93
  ```
94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  ### Using with AION-1
96
 
97
  To tokenize with the AION codec and compute embeddings:
@@ -123,7 +146,6 @@ mean_embedding = embeddings.mean(dim=1) # (1, 768)
123
  | Oquab et al. (2023) | 71.4 |
124
  | EfficientNet | 80.0 |
125
  | Walmsley et al. (2022) | 89.6 |
126
- | AION-Search | X |
127
 
128
  ## Data Sources
129
 
 
1
  ---
 
2
  license: mit
3
+ task_categories:
4
+ - feature-extraction
 
 
 
 
 
5
  size_categories:
6
+ - 1K<n<10K
7
+ pretty_name: Galaxy10 AION-1 Benchmark
8
+ tags:
9
+ - astronomy
10
+ - galaxy-morphology
11
+ - aion
12
+ - galaxy-zoo
13
  configs:
14
+ - config_name: default
15
+ data_files:
16
+ - split: train
17
+ path: data/train-*.parquet
18
+ - split: test
19
+ path: data/test-*.parquet
 
20
  dataset_info:
21
  features:
22
+ - name: image_rgb
23
+ dtype: image
24
+ - name: ra
25
+ dtype: float64
26
+ - name: dec
27
+ dtype: float64
28
+ - name: Galaxy10_DECals_index
29
+ dtype: int64
30
+ - name: label
31
+ dtype: int64
32
+ - name: label_name
33
+ dtype: string
34
+ - name: image_bands
35
+ list:
36
  list:
37
  list:
38
+ dtype: float32
 
39
  ---
40
 
41
  # Galaxy10 AION-1 Benchmark
42
 
43
+ This dataset provides the exact train/test split used to produce the Galaxy Morphology Classification results in the [AION-1 paper](https://arxiv.org/abs/2510.17960) (Table 2, Section 7.2.2) and used in the paper [Semantic search for 100M+ galaxy images using AI-generated captions](https://huggingface.co/papers/2512.11982).
44
+
45
+ - **Project Page:** [https://aion-search.github.io](https://aion-search.github.io)
46
+ - **GitHub Repository:** [https://github.com/NolanKoblischke/AION-Search](https://github.com/NolanKoblischke/AION-Search)
47
 
48
  ## Task
49
 
 
93
  # cutout[0] = g-band, cutout[1] = r-band, cutout[2] = i-band, cutout[3] = z-band
94
  ```
95
 
96
+ ### Sample Usage: Semantic Search
97
+
98
+ To perform semantic search as described in the AION-Search paper:
99
+
100
+ ```python
101
+ from aionsearch import AIONSearchClipModel
102
+
103
+ # Load pretrained model from HuggingFace
104
+ model = AIONSearchClipModel.from_pretrained()
105
+
106
+ # Project AION image embeddings into shared space
107
+ aion_embedding = # Embedding of an image using github.com/PolymathicAI/AION
108
+ projected_image = model.image_projector(aion_embedding) # (batch, 768) -> (batch, 1024)
109
+
110
+ # Project OpenAI text embeddings into shared space
111
+ text_embedding = # Embedding of text using text-embedding-3-large
112
+ projected_text = model.text_projector(text_embedding) # (batch, 3072) -> (batch, 1024)
113
+
114
+ # Compute similarity for semantic search
115
+ similarity = projected_image @ projected_text.T
116
+ ```
117
+
118
  ### Using with AION-1
119
 
120
  To tokenize with the AION codec and compute embeddings:
 
146
  | Oquab et al. (2023) | 71.4 |
147
  | EfficientNet | 80.0 |
148
  | Walmsley et al. (2022) | 89.6 |
 
149
 
150
  ## Data Sources
151