ProCreations commited on
Commit
c673ee1
·
verified ·
1 Parent(s): ab67ee4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +79 -3
README.md CHANGED
@@ -1,3 +1,79 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # 🕳️ Black Hole Sim — Randomized Dataset (ProCreations)
6
+
7
+ **ProCreations/black-hole-sim-randomized** is a high-fidelity, randomized simulation dataset of relativistic physics near Kerr and Schwarzschild black holes. Designed to train and evaluate AI systems on **general relativity**, **orbital mechanics**, and **spacetime geometry**—without any visual dependencies.
8
+
9
+ ---
10
+
11
+ ## 📦 Dataset Overview
12
+
13
+ - **Samples**: 400,000+
14
+ - **Format**: JSON Lines (`.jsonl`)
15
+ - **Size**: ~583 MB
16
+ - **Compression**: Optionally `.jsonl.gz`
17
+ - **Language/Structure**: Pure structured JSON (1 per line)
18
+ - **Generated on**: Apple Silicon (Metal-accelerated)
19
+ - **Use cases**: Pretraining, fine-tuning, RAG, reasoning, QA, simulation
20
+
21
+ ---
22
+
23
+ ## ✨ Features per Sample
24
+
25
+ Each sample describes a **single randomly sampled scenario**, containing:
26
+
27
+ ### 🕳️ Black Hole
28
+
29
+ - `mass_solar` – In solar masses (randomized log-uniform from 3 to 1e9)
30
+ - `spin` – Kerr spin parameter `a` (0.0 to 0.998)
31
+ - `type` – `"Schwarzschild"` or `"Kerr"`
32
+
33
+ ### 👁️ Observer
34
+
35
+ - 3D position (`r_km`, `theta_rad`, `phi_rad`)
36
+ - Orbital velocity vector in spherical coordinates
37
+ - Orbital angular velocity `omega`
38
+
39
+ ### 📐 Metrics (GR & physics)
40
+
41
+ - `time_dilation`, `redshift`, `gamma`
42
+ - `orbital_period_s`, `frame_dragging`, `extremeness_score`
43
+ - `metric_tensor` – Full 4x4 Kerr metric in Boyer–Lindquist coordinates
44
+ - `a_spin_m`, `event_horizon_m`, `delta`, `rho_squared`
45
+ - Velocity vector + coordinate positions
46
+ - `horizon_proximity_ratio` (how close the observer is to Rs)
47
+
48
+ ### 🧪 Raw Parameters
49
+
50
+ - Ground truth values like `mass_kg`, `radius_m`, `rs_m`
51
+
52
+ ---
53
+
54
+ ## 📁 Example
55
+
56
+ ```json
57
+ {
58
+ "step": 2,
59
+ "black_hole": {
60
+ "mass_solar": 219.051486,
61
+ "spin": 0.504345,
62
+ "type": "Kerr"
63
+ },
64
+ "observer": {
65
+ "r_km": 1600.060345,
66
+ "theta_rad": 0.624667,
67
+ "phi_rad": 4.083344,
68
+ "v_phi_rad_s": 128884.609375
69
+ },
70
+ "metrics": {
71
+ "time_dilation": 0.771804,
72
+ "redshift": 0.295665,
73
+ "frame_dragging": true,
74
+ "metric_tensor": [[...]],
75
+ "horizon_proximity_ratio": 2.654,
76
+ "gr_metric_type": "Kerr"
77
+ },
78
+ "notes": "Spin=0.504, Time dilation=0.772, Redshift=0.296"
79
+ }