cjc0013 commited on
Commit
000a710
·
verified ·
1 Parent(s): 7423643

Create technical.txt

Browse files
Files changed (1) hide show
  1. technical.txt +155 -0
technical.txt ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ This dataset is not raw UFO reports — it’s a *processed, enriched, semantically-clustered corpus* designed for large-scale analysis.
2
+ Below is the exact pipeline used.
3
+
4
+ ---
5
+
6
+ # **🧠 1. Embeddings (Semantic Encoding)**
7
+
8
+ All reports were embedded using:
9
+
10
+ **Model:** `BAAI/bge-large-en-v1.5`
11
+ **Dimensionality:** 1024
12
+
13
+ Embeddings capture meaning (not keywords), allowing similar descriptions to cluster even with different phrasing, spelling, or vocabulary.
14
+
15
+ ---
16
+
17
+ # **📉 2. Dimensionality Reduction (UMAP → 15D)**
18
+
19
+ High-dimensional vectors were reduced using:
20
+
21
+ **UMAP(n_components=15, metric='cosine')**
22
+
23
+ Reasons for UMAP-15:
24
+
25
+ * preserves local/global structure
26
+ * reduces noise
27
+ * improves cluster separation
28
+ * makes density-based clustering stable
29
+
30
+ ---
31
+
32
+ # **📍 3. Density Clustering (HDBSCAN)**
33
+
34
+ Reports were grouped using:
35
+
36
+ **HDBSCAN(min_cluster_size≈tuned, min_samples≈tuned)**
37
+
38
+ Outputs include:
39
+
40
+ * `cluster_id` (−1 = noise)
41
+ * `prob` (cluster stability score)
42
+ * ~3.7k clusters
43
+ * ~20% noise
44
+
45
+ HDBSCAN discovers meaningful themes like:
46
+
47
+ * recurring object behaviors
48
+ * atmospheric misidentifications
49
+ * military-adjacent patterns
50
+ * long-term witness motif clusters
51
+ * hoax/storytelling clusters
52
+ * nonsensical/noise clusters
53
+
54
+ ---
55
+
56
+ # **🔍 4. Sparse Retrieval (BM25) — Used for QA, Not in the Dataset**
57
+
58
+ A **BM25 index was built during preprocessing** to assist in quality control:
59
+
60
+ BM25 was used to:
61
+
62
+ * sanity-check embedding clusters
63
+ * inspect keyword cohesion
64
+ * identify outliers / mislabeled points
65
+ * verify that HDBSCAN clusters were semantically coherent
66
+ * detect keyword drift within large clusters
67
+
68
+ **Important:**
69
+ The *BM25 scores and index are **not included** in the final dataset.*
70
+ BM25 influenced the cleaning stage but is not part of the exported fields.
71
+
72
+
73
+ ---
74
+
75
+ # **🌕 5. Sidecar Feature Enrichment**
76
+
77
+ Each record includes enriched metadata:
78
+
79
+ ### **Moon illumination & altitude**
80
+
81
+ * `moon_illum`
82
+ * `moon_alt_deg`
83
+ Computed from timestamp + lat/lon.
84
+
85
+ ### **Nearest airport (US/CA/GB accuracy strongest)**
86
+
87
+ * `nearest_airport_km`
88
+ * `nearest_airport_code`
89
+ Computed via geospatial lookup.
90
+
91
+ ### **Weather bucket**
92
+
93
+ * `wx_bucket` (high-level NOAA-based label, imperfect)
94
+
95
+ ### **Timestamp normalization**
96
+
97
+ * `ts` = Unix epoch (ms)
98
+
99
+ ### **Source tagging**
100
+
101
+ * `src` indicates which Kaggle dataset the row came from.
102
+
103
+ ---
104
+
105
+ # **📚 6. Canonical Output Format**
106
+
107
+ Each JSONL entry looks like:
108
+
109
+ ```
110
+ {
111
+ "uid": ...,
112
+ "t_utc": ...,
113
+ "lat": ...,
114
+ "lon": ...,
115
+ "text": ...,
116
+ "src": ...,
117
+
118
+ "city": ...,
119
+ "state": ...,
120
+ "country": ...,
121
+
122
+ "cluster_id": ...,
123
+ "prob": ...,
124
+
125
+ "moon_illum": ...,
126
+ "moon_alt_deg": ...,
127
+
128
+ "nearest_airport_km": ...,
129
+ "nearest_airport_code": ...,
130
+
131
+ "wx_bucket": ...,
132
+ "ts": ...
133
+ }
134
+ ```
135
+
136
+ ---
137
+
138
+ # **📌 What This Dataset *Is***
139
+
140
+ ✔️ A semantically-clustered UFO corpus
141
+ ✔️ Enriched with astronomy + geospatial + weather sidecars
142
+ ✔️ Cleaned, deduped, normalized
143
+ ✔️ Built using modern ML (BGE+UMAP+HDBSCAN)
144
+ ✔️ Ready for search, visualization, mapping, temporal analysis
145
+ ✔️ Distributed without interpretation or claims
146
+
147
+ ---
148
+
149
+ # **📌 What This Dataset *Is Not***
150
+
151
+ ❌ Not a curated list of “important” sightings
152
+ ❌ Not opinionated — no inferences built in
153
+ ❌ Not a proof of anything
154
+ ❌ Not filtered toward any outcome
155
+ ❌ Does not include BM25 scores (BM25 was QA-only)