Datasets:
Updated
Browse files
README.md
CHANGED
@@ -1,3 +1,126 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
task_categories:
|
4 |
+
- text-classification
|
5 |
+
- summarization
|
6 |
+
- feature-extraction
|
7 |
+
- text-generation
|
8 |
+
language:
|
9 |
+
- en
|
10 |
+
tags:
|
11 |
+
- multi-class-classification
|
12 |
+
- extractive-qa
|
13 |
+
- open-domain-qa
|
14 |
+
pretty_name: stargate
|
15 |
+
size_categories:
|
16 |
+
- 10K<n<100K
|
17 |
+
---
|
18 |
+
# 🧠 STARGATE: CIA Remote Viewing Archive (Raw PDFs + Metadata)
|
19 |
+
|
20 |
+
**STARGATE** is the most comprehensive open-access archive of declassified CIA documents related to **psychic research**, **remote viewing (RV)**, and **anomalous cognition**. This dataset consolidates over **12,000 scanned PDF files**, drawn from decades of classified government programs designed to investigate and operationalize extrasensory perception (ESP) in intelligence-gathering contexts.
|
21 |
+
|
22 |
+
These include, but are not limited to:
|
23 |
+
|
24 |
+
- **Grill Flame** (US Army + DIA)
|
25 |
+
- **Center Lane** (NSA/Army Intelligence)
|
26 |
+
- **Sun Streak** (precursor to Stargate)
|
27 |
+
- **STARGATE Program** (DIA, 1991–1995)
|
28 |
+
|
29 |
+
This release features the **original scanned documents** in PDF format, along with per-file metadata for page count, processing timestamps, and preparation for OCR and further analysis.
|
30 |
+
|
31 |
+
---
|
32 |
+
|
33 |
+
## 📦 Dataset Summary
|
34 |
+
|
35 |
+
- 🔍 **12,000+** CIA documents (PDFs), scanned and declassified
|
36 |
+
- 🗂️ Each entry includes document-specific metadata
|
37 |
+
- 🕵️♂️ Topics include: remote viewing trials, operational psychic use, experimental methods, scientific disputes, and internal memos
|
38 |
+
- 🧾 Format: binary PDFs with structured metadata in JSON
|
39 |
+
|
40 |
+
---
|
41 |
+
|
42 |
+
## 🧱 Metadata Schema
|
43 |
+
|
44 |
+
Each dataset row contains:
|
45 |
+
|
46 |
+
| Field | Type | Description |
|
47 |
+
|------------------|----------|-----------------------------------------------------------------------------|
|
48 |
+
| `filename` | `string` | Official CIA filename (e.g., `CIA-RDP96-00788R000700020002-2.pdf`) |
|
49 |
+
| `document_id` | `string` | Optional normalized ID (same as filename without extension) |
|
50 |
+
| `page_count` | `int` | Number of pages in the document |
|
51 |
+
| `image_count` | `int` | Number of page images generated (usually equal to page count) |
|
52 |
+
| `processed_at` | `string` | Timestamp (ISO 8601) when file was processed into this dataset |
|
53 |
+
| `ocr_status` | `string` | `"pending"`, `"success"`, `"error"` — tracks OCR processing state |
|
54 |
+
| `text_extracted` | `bool` | Indicates whether OCR text was successfully generated |
|
55 |
+
| `source` | `string` | Source label, e.g., `"CIA Stargate Archive"` |
|
56 |
+
| `tags` | `list` | Optional list of tags or topic keywords |
|
57 |
+
| `pdf` | `binary` | The original scanned PDF file (can be downloaded) |
|
58 |
+
|
59 |
+
---
|
60 |
+
|
61 |
+
## 🔍 Example Record
|
62 |
+
|
63 |
+
```json
|
64 |
+
{
|
65 |
+
"filename": "CIA-RDP79-00999A000200010002-3.pdf",
|
66 |
+
"document_id": "CIA-RDP79-00999A000200010002-3",
|
67 |
+
"page_count": 10,
|
68 |
+
"image_count": 10,
|
69 |
+
"processed_at": "2025-03-22T22:04:19.172208",
|
70 |
+
"ocr_status": "pending",
|
71 |
+
"text_extracted": false,
|
72 |
+
"source": "CIA Stargate Archive",
|
73 |
+
"tags": [],
|
74 |
+
"pdf": "<binary>"
|
75 |
+
}
|
76 |
+
|
77 |
+
🔬 Research Context
|
78 |
+
This archive reflects the U.S. government’s decades-long scientific and operational interest in:
|
79 |
+
|
80 |
+
Remote viewing (describing a hidden location or object without physical access)
|
81 |
+
|
82 |
+
Precognition (perceiving future events)
|
83 |
+
|
84 |
+
Psychokinesis (mind influencing matter)
|
85 |
+
|
86 |
+
ESP training and evaluation protocols
|
87 |
+
|
88 |
+
Intelligence-gathering attempts using anomalous cognition
|
89 |
+
|
90 |
+
Internal reports on experimental validation, critique, and ethics
|
91 |
+
|
92 |
+
The dataset includes actual remote viewing transcripts, target descriptions, scientific methodology reports, and responses to academic criticism — particularly rebuttals to well-known skeptics such as Dr. Ray Hyman.
|
93 |
+
|
94 |
+
📚 Use Cases
|
95 |
+
This dataset supports a wide range of applications:
|
96 |
+
|
97 |
+
Domain Applications
|
98 |
+
🧠 NLP & AI OCR benchmarking, QA over scanned archives, embedding generation
|
99 |
+
🧾 Digital Humanities Historical research, truth-seeking, Cold War context analysis
|
100 |
+
🛰️ Defense Studies Study of cognitive science integration into military strategy
|
101 |
+
🕵️ OSINT & Intelligence Pattern detection in government research methods
|
102 |
+
🤯 Fringe Exploration Cross-comparison with spiritual, metaphysical, or psi phenomena
|
103 |
+
|
104 |
+
License
|
105 |
+
All documents are sourced from the CIA Electronic Reading Room or other FOIA-approved releases. This dataset is distributed under the Creative Commons Attribution 4.0 International (CC BY 4.0) license.
|
106 |
+
|
107 |
+
You may use, share, and modify this dataset freely — even for commercial purposes — with attribution.
|
108 |
+
|
109 |
+
🔗 https://creativecommons.org/licenses/by/4.0/
|
110 |
+
|
111 |
+
📌 Citation
|
112 |
+
If you use this dataset, please cite:
|
113 |
+
|
114 |
+
@dataset{gotthatdata_stargate_2024,
|
115 |
+
title = {STARGATE: CIA Remote Viewing Archive},
|
116 |
+
author = {GotThatData},
|
117 |
+
year = {2024},
|
118 |
+
url = {https://huggingface.co/datasets/GotThatData/STARGATE}
|
119 |
+
}
|
120 |
+
|
121 |
+
Also cite the CIA Electronic Reading Room and FOIA sources where appropriate.
|
122 |
+
|
123 |
+
🙏 Acknowledgements
|
124 |
+
This archive exists thanks to the persistent efforts of researchers, archivists, and activists who demanded transparency and pressed for FOIA releases. Special thanks to pioneers in psi research and the analysts who challenged convention in search of greater understanding.
|
125 |
+
|
126 |
+
🔗 Curated by GotThatData ·
|