StarEmbed commited on
Commit
6b801f3
·
verified ·
1 Parent(s): 83fdbbd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +85 -0
README.md CHANGED
@@ -85,3 +85,88 @@ configs:
85
  - split: anom
86
  path: data/anom-*
87
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  - split: anom
86
  path: data/anom-*
87
  ---
88
+
89
+ # StarEmbed Benchmark Data set
90
+
91
+ The StarEmbed benchmark data set is available here in huggingface datasets format.
92
+
93
+ The ~40,000 multi-band ZTF light curve are available at `StarEmbed/data`.
94
+ The train/validation/test splits are included alongside the additional anom split used for the OOD benchmarking.
95
+
96
+
97
+ ## Available columns
98
+
99
+ Each star in data set has the following fields:
100
+
101
+ **Top-level columns**
102
+ | Column | Type | Description |
103
+ | ------------- | --------------------------------- | ---------------------------------------------------------------------------------------------------- |
104
+ | `sourceid` | int64 | source/object ID of the variable star (e.g. `102311274853951453`) |
105
+ | `bands_data` | dict / struct (keys `g`, `i`, `r`) | per-band light curves; each band is a struct (or `null` if absent) holding the arrays in the table below.|
106
+ | `item_id` | string | unique series id, `{sourceid}_{band}` for the primary band (usually `g`), e.g. `102311274853951453_g` |
107
+ | `start` | pandas.Timestamp (timestamp[us]) | date of first observation (first `mjd` converted to a timestamp) |
108
+ | `freq` | string | sampling frequency (e.g. `"1D"` for daily) |
109
+ | `period` | float64 | catalog period of the variable star, in days (range ≈ 0.13 – 885) |
110
+ | `objid` | string | object identifier, same as `item_id` (`{sourceid}_{band}`) |
111
+ | `csdr1_id` | string | Catalina Surveys DR1 (CSDR1) cross-match id, e.g. `CSS_J082956.4-044426` |
112
+ | `class_str` | string | variable-star class label; one of `EW`, `EA`, `RRab`, `RRc`, `RRd`, `RS CVn`, `LPV` |
113
+
114
+ **Per-band fields inside each band of `bands_data` (`g` / `r`)**
115
+ | Field | Type | Description |
116
+ | ------------------------ | -------------- | ------------------------------------------------------------------- |
117
+ | `target` | list of floats | magnitude, measure of brightness (AB system) — the raw light curve |
118
+ | `past_feat_dynamic_real` | list of floats | mag_err, 1σ uncertainty on magnitude, aligned with `target` |
119
+ | `feat_dynamic_real` | list of floats | delta_t, time gap (days) between each two consecutive observations |
120
+ | `mjd` | list of floats | observation time in Modified Julian Date, aligned with `target` |
121
+ | `length` | int64 | number of observations in this band's light curve |
122
+
123
+ All four splits (train, validation, test, anom) share the identical schema described above. The train/validation/test splits contain the seven in-distribution classes listed under class_str, whereas the anom split is an anomaly-detection holdout whose class_str values are a disjoint set of out-of-distribution classes (encoded as numeric strings '3', '7', '9'–'17') that never appear in training.
124
+
125
+ ---
126
+
127
+ ## **Citation**
128
+ This work was accepted to the main track of ICML 2026 as well as the AI4Physics workshop. If you use or refer to this dataset please cite our work.
129
+ ```
130
+ @article{StarEmbed,
131
+ author = {{Li}, Weijian and {Chen}, Hong-Yu and {Rehemtulla}, Nabeel and {Shah}, Ved G. and {Wu}, Dennis and {Kim}, Dongho and {Lin}, Qinjie and {Miller}, Adam A. and {Liu}, Han},
132
+ title = "{StarEmbed: Benchmarking Time Series Foundation Models on Astronomical Observations of Variable Stars}",
133
+ journal = {arXiv e-prints},
134
+ keywords = {Solar and Stellar Astrophysics, Instrumentation and Methods for Astrophysics, Artificial Intelligence},
135
+ year = 2025,
136
+ month = oct,
137
+ eid = {arXiv:2510.06200},
138
+ pages = {arXiv:2510.06200},
139
+ doi = {10.48550/arXiv.2510.06200},
140
+ archivePrefix = {arXiv},
141
+ eprint = {2510.06200},
142
+ primaryClass = {astro-ph.SR},
143
+ adsurl = {https://ui.adsabs.harvard.edu/abs/2025arXiv251006200L},
144
+ adsnote = {Provided by the SAO/NASA Astrophysics Data System}
145
+ }
146
+ ```
147
+
148
+ The StarEmbed data set is curated from ZTF observations and the Catalina Surveys Periodic Variable Star Catalog. If you use the StarEmbed data please also cite the works below.
149
+ ```
150
+ @article{bellm2018zwicky,
151
+ title={The Zwicky Transient Facility: system overview, performance, and first results},
152
+ author={Bellm, Eric C and Kulkarni, Shrinivas R and Graham, Matthew J and Dekany, Richard and Smith, Roger M and Riddle, Reed and Masci, Frank J and Helou, George and Prince, Thomas A and Adams, Scott M and others},
153
+ journal={Publications of the Astronomical Society of the Pacific},
154
+ volume={131},
155
+ number={995},
156
+ pages={018002},
157
+ year={2018},
158
+ publisher={IOP Publishing}
159
+ }
160
+
161
+ @article{drake2014catalina,
162
+ title={The catalina surveys periodic variable star catalog},
163
+ author={Drake, AJ and Graham, MJ and Djorgovski, SG and Catelan, M and Mahabal, AA and Torrealba, G and Garc{\'\i}a-{\'A}lvarez, D and Donalek, C and Prieto, JL and Williams, R and others},
164
+ journal={The Astrophysical Journal Supplement Series},
165
+ volume={213},
166
+ number={1},
167
+ pages={9},
168
+ year={2014},
169
+ publisher={IOP Publishing}
170
+ }025}
171
+ }
172
+ ```