samfatnassi commited on
Commit
ddb8459
·
verified ·
1 Parent(s): 18415c8

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -0
README.md ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: apache-2.0
4
+ size_categories:
5
+ - 1B<n
6
+ task_categories:
7
+ - tabular-classification
8
+ - feature-extraction
9
+ tags:
10
+ - astronomy
11
+ - astrophysics
12
+ - gaia-dr3
13
+ - stellar-data
14
+ - space
15
+ ---
16
+
17
+ # Gaia-DR3: A Billion-Star Dataset for Galactic Analysis
18
+
19
+
20
+
21
+ This dataset is a high-fidelity, pre-processed collection of over **1 Billion stellar records** derived from the **European Space Agency (ESA) Gaia Mission (Data Release 3)**. It is specifically curated for large-scale galactic archaeology, 3D mapping, and training advanced machine learning models like **SADIM-54M**.
22
+
23
+ ### 1. Dataset Overview
24
+ The dataset provides a comprehensive snapshot of the Milky Way, covering astrometric, kinematic, and photometric parameters. It has been optimized for high-performance computing and AI-driven astronomical frameworks.
25
+
26
+ ### 2. Feature Schema (13 Core Parameters)
27
+ The dataset is structured with 13 essential features for understanding stellar dynamics:
28
+
29
+ | Feature Name | Data Type | Scientific Description |
30
+ | :--- | :--- | :--- |
31
+ | **source_id** | `int64` | Unique Gaia DR3 identifier for each stellar source. |
32
+ | **ra / dec** | `float64` | **Equatorial Coordinates:** Right Ascension & Declination. |
33
+ | **l / b** | `float64` | **Galactic Coordinates:** Longitude & Latitude relative to the Galaxy. |
34
+ | **pmra / pmdec** | `float64` | **Proper Motion:** Angular velocity of the star across the sky (mas/yr). |
35
+ | **d_pc** | `float64` | **Distance:** Calculated distance from Earth in Parsecs ($1/parallax$). |
36
+ | **x, y, z** | `float64` | **3D Cartesian:** Heliocentric position relative to the Sun. |
37
+ | **abs_m** | `float64` | **Absolute Magnitude:** The intrinsic brightness of the star. |
38
+ | **bp_rp** | `float32` | **Color Index:** Difference between BP and RP (Temperature indicator). |
39
+
40
+ ### 3. Usage & Access (Streaming Mode)
41
+ **Note:** Due to the massive scale of this dataset (1B+ rows), downloading the full files to a local machine is not recommended. Use the **Streaming Mode** provided by the Hugging Face `datasets` library to process data on the fly:
42
+
43
+ ```python
44
+ from datasets import load_dataset
45
+
46
+ # Stream the dataset directly without downloading the full files
47
+ dataset = load_dataset("samfatnassi/gaia-dr3", split="train", streaming=True)
48
+
49
+ # Access a single stellar record
50
+ star_record = next(iter(dataset))
51
+ print(star_record)
52
+
53
+ 4. Integration with SADIM-54M
54
+ This dataset serves as the foundational "knowledge base" for the SADIM-54M Model. While the dataset provides the raw observational facts, the model provides the analytical intelligence to predict and classify these stars.
55
+ 5. Research & Ethics (Open Science)
56
+ This dataset is released under the Apache 2.0 License. It is provided as a contribution to Open Science and Humanity, encouraging researchers, students, and developers worldwide to explore the mysteries of our galaxy without boundaries.
57
+ Data Source: European Space Agency (ESA) Gaia Mission
58
+ Project Lead: KilmaAI / Sadim
59
+
60
+
61
+