Improve dataset card: add paper link, GitHub link, and usage

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +49 -7
README.md CHANGED
@@ -1,8 +1,12 @@
1
  ---
2
- pretty_name: Stargazer
3
- license: cc-by-4.0
4
  language:
5
  - en
 
 
 
 
 
 
6
  tags:
7
  - astronomy
8
  - exoplanets
@@ -11,8 +15,6 @@ tags:
11
  - radial-velocity
12
  - time-series
13
  - scientific-reasoning
14
- size_categories:
15
- - n<1K
16
  configs:
17
  - config_name: default
18
  data_files:
@@ -30,15 +32,43 @@ configs:
30
 
31
  # Dataset Card for Stargazer
32
 
33
- Stargazer is a benchmark for exoplanet detection from radial-velocity time series. Each row is one benchmark task with the original task payload preserved.
 
 
 
 
34
 
35
  ## Overview
36
 
 
 
37
  - Total tasks: 120
38
- - Repo: `liuxinge/Stargazer`
39
  - License: `cc-by-4.0`
40
 
41
- This release includes benchmark tasks built from both generated systems and archival RV systems, presented as one benchmark collection.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
  ## What Each Row Contains
44
 
@@ -64,3 +94,15 @@ It also adds a few summary fields for filtering in the Hugging Face viewer:
64
  - Tasks in this release may contain up to 7 planets
65
  - This is a benchmark release, not a training corpus
66
  - Ground-truth configuration fields are included, so they should not be exposed to the evaluated agent
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
 
2
  language:
3
  - en
4
+ license: cc-by-4.0
5
+ size_categories:
6
+ - n<1K
7
+ task_categories:
8
+ - other
9
+ pretty_name: Stargazer
10
  tags:
11
  - astronomy
12
  - exoplanets
 
15
  - radial-velocity
16
  - time-series
17
  - scientific-reasoning
 
 
18
  configs:
19
  - config_name: default
20
  data_files:
 
32
 
33
  # Dataset Card for Stargazer
34
 
35
+ Stargazer is a scalable environment for evaluating AI agents on dynamic, iterative physics-grounded model-fitting tasks using inference on radial-velocity (RV) time series data.
36
+
37
+ - **Paper:** [Stargazer: A Scalable Model-Fitting Benchmark Environment for AI Agents under Astrophysical Constraints](https://huggingface.co/papers/2604.15664)
38
+ - **Project Page:** [https://aips-uoft.github.io/Stargazer/](https://aips-uoft.github.io/Stargazer/)
39
+ - **Repository:** [https://github.com/AIPS-UofT/Stargazer](https://github.com/AIPS-UofT/Stargazer)
40
 
41
  ## Overview
42
 
43
+ Stargazer comprises 120 tasks across three difficulty tiers, including 20 real archival cases, covering diverse scenarios ranging from high-SNR single-planet systems to complex multi-planetary configurations requiring involved low-SNR analysis.
44
+
45
  - Total tasks: 120
 
46
  - License: `cc-by-4.0`
47
 
48
+ This release includes benchmark tasks built from both generated systems and archival RV systems, presented as one benchmark collection. Each row is one benchmark task with the original task payload preserved.
49
+
50
+ ## Usage
51
+
52
+ To run a single task by ID using the official repository:
53
+
54
+ ```bash
55
+ python run_agent_batch_hard_timeout.py \
56
+ --model gpt-5-mini \
57
+ --task-ids seed22_diff4 \
58
+ --verbose \
59
+ --output-dir results_debug
60
+ ```
61
+
62
+ To run all difficulty-1 tasks with 10 parallel workers:
63
+
64
+ ```bash
65
+ python run_agent_batch_hard_timeout.py \
66
+ --model gpt-5-mini \
67
+ --count 1000 \
68
+ --difficulties 1 \
69
+ --workers 10 \
70
+ --output-dir results_diff1
71
+ ```
72
 
73
  ## What Each Row Contains
74
 
 
94
  - Tasks in this release may contain up to 7 planets
95
  - This is a benchmark release, not a training corpus
96
  - Ground-truth configuration fields are included, so they should not be exposed to the evaluated agent
97
+
98
+ ## Citation
99
+
100
+ ```bibtex
101
+ @article{liu2026stargazer,
102
+ title = {Stargazer: A Scalable Model-Fitting Benchmark Environment for AI Agents under Astrophysical Constraints},
103
+ author = {Liu, Xinge and Zhang, Terry Jingchen and Sch{\"o}lkopf, Bernhard and Jin, Zhijing and Menou, Kristen},
104
+ year = {2026},
105
+ journal = {arXiv preprint arXiv:2604.15664},
106
+ url = {https://arxiv.org/abs/2604.15664}
107
+ }
108
+ ```