Views
No views yet
| Feature Name | Description |
|---|---|
| source_id | Unique Gaia DR3 Identifier |
| ra / dec | Celestial Equatorial Coordinates |
| l / b | Galactic Coordinates (Disk Alignment) |
| pmra / pmdec | Kinematics (Proper Motion Velocity) |
| d_pc | Distance in Parsecs (1/parallax) |
| x, y, z | 3D Heliocentric Cartesian Mapping |
| abs_m | Absolute Magnitude (Intrinsic Brightness) |
| bp_rp | Color Index (Temperature Indicator) |
1from datasets import load_dataset
2from transformers import AutoModel
3
4# 1. Access the Data
5dataset = load_dataset("samfatnassi/gaia-dr3", split="train", streaming=True)
6
7# 2. Load the Model
8model = AutoModel.from_pretrained("KilmaAI/SADIM-77M")
9
10# Fetch a sample star
11sample_star = next(iter(dataset))
12print(f"Analyzing Star ID: {sample_star['source_id']}")
13
14