File size: 9,353 Bytes
d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 129cee7 d40daf6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | # π§ STARGATE: CIA Remote Viewing Archive (Raw PDFs + Metadata)
[](https://huggingface.co/datasets/GotThatData/STARGATE)
[](https://opensource.org/licenses/MIT)
[](https://huggingface.co/datasets/GotThatData/STARGATE)
## Overview
**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.
### Programs Included
- **Grill Flame** (1973β1978) - DIA's early remote viewing experiments
- **Center Lane** (1978β1985) - Army Intelligence psychic espionage program
- **Sun Streak** (1985β1991) - Continuation under new codename
- **Star Gate** (1991β1995) - Final incarnation before congressional termination
- **Related Programs:** Gondola Wish, Scanate, Inscom Center Lane
---
## π― Use Cases
### 1. **Natural Language Processing (NLP)**
- **Information extraction** - Extract dates, locations, agents, targets from session transcripts
- **Entity recognition** - Identify patterns in how remote viewers describe unknown locations
- **Summarization** - Generate abstracts of lengthy technical reports
- **Text classification** - Categorize documents by program, methodology, success rate
### 2. **Historical & Intelligence Research**
- **Cold War intelligence tactics** - How did the U.S. approach psychic espionage?
- **Scientific methodology** - What protocols were used? How did they evolve?
- **Congressional oversight** - Why was the program terminated in 1995?
- **Cross-agency collaboration** - DIA, CIA, Army Intelligence, SRI International
### 3. **Psychological Analysis**
- **Cognitive bias** in perception and reporting
- **Training methodologies** for perceptual enhancement
- **Statistical evaluation** of claimed psychic phenomena
- **Interviewer-subject dynamics** in session transcripts
### 4. **Machine Learning Training**
- **OCR benchmarking** - Scanned 1970s-1990s government documents (challenging quality)
- **Document classification** - Multi-class categorization (session transcript, technical report, administrative memo, etc.)
- **Anomaly detection** - Identify unusual patterns or outliers in session data
- **Time-series analysis** - Success rates, funding levels, program activity over decades
---
## π Dataset Structure
```
STARGATE/
βββ pdfs/ # 12,000+ raw scanned PDF files
β βββ STAR-GATE-01.pdf
β βββ STAR-GATE-02.pdf
β βββ ...
βββ metadata.csv # Document metadata (title, date, program, classification)
βββ processed/ # (Future) OCR-extracted text versions
βββ README.md
```
### Metadata Fields
| Field | Description | Example |
|-------|-------------|---------|
| `document_id` | Unique identifier | `STAR-GATE-00042` |
| `title` | Document title | "Remote Viewing Session: Soviet Submarine Base" |
| `date` | Document date | `1983-04-15` |
| `program` | Program codename | `Center Lane`, `Star Gate` |
| `classification` | Original classification | `SECRET`, `CONFIDENTIAL`, `UNCLASSIFIED` |
| `declassification_date` | When it was released | `2000-08-09` |
| `page_count` | Number of pages | `23` |
| `file_path` | Relative path to PDF | `pdfs/STAR-GATE-00042.pdf` |
---
## π Quick Start
### Load the Dataset
```python
from datasets import load_dataset
dataset = load_dataset("GotThatData/STARGATE")
```
### Example: Extract Metadata for a Specific Program
```python
import pandas as pd
# Load metadata
df = pd.read_csv("hf://datasets/GotThatData/STARGATE/metadata.csv")
# Filter for Star Gate program
star_gate_docs = df[df['program'] == 'Star Gate']
print(f"Found {len(star_gate_docs)} Star Gate documents")
# Sort by date
star_gate_docs = star_gate_docs.sort_values('date')
print(star_gate_docs[['title', 'date', 'page_count']].head(10))
```
### Example: OCR Text Extraction (with PyMuPDF)
```python
import fitz # PyMuPDF
def extract_text_from_pdf(pdf_path):
doc = fitz.open(pdf_path)
text = ""
for page in doc:
text += page.get_text()
return text
# Extract text from a document
pdf_path = "hf://datasets/GotThatData/STARGATE/pdfs/STAR-GATE-00042.pdf"
text = extract_text_from_pdf(pdf_path)
print(text[:500]) # First 500 characters
```
### Example: Train a Document Classifier
```python
from transformers import AutoTokenizer, AutoModelForSequenceClassification, Trainer
# Load pre-trained model
model_name = "distilbert-base-uncased"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForSequenceClassification.from_pretrained(model_name, num_labels=4)
# Prepare data (classification: transcript, report, memo, other)
# ... (data preparation code)
# Fine-tune
trainer = Trainer(model=model, train_dataset=train_data, eval_dataset=eval_data)
trainer.train()
```
---
## π Background & Context
### What Was STARGATE?
In 1972, the CIA and DIA began funding research into **remote viewing** - the alleged ability to perceive distant or unseen targets through extrasensory means. Programs evolved over two decades under various codenames:
1. **Early Phase (1973-1978):** Grill Flame - Initial DIA experiments at SRI International
2. **Operational Phase (1978-1991):** Center Lane & Sun Streak - Active intelligence gathering
3. **Final Phase (1991-1995):** Star Gate - Consolidated under DIA oversight
### Why Was It Terminated?
In 1995, the CIA commissioned an independent review by the American Institutes for Research (AIR). The final report concluded:
> "The information provided by remote viewing is vague and ambiguous, making it difficult, if not impossible, for the technique to yield information of sufficient quality and accuracy for actionable intelligence."
Congress defunded the program shortly after. All documents were declassified and released via the CIA's CREST database between 2000-2017.
### Notable Participants
- **Ingo Swann** - Developed Controlled Remote Viewing (CRV) methodology
- **Pat Price** - Remote viewer credited with "successful" Cold War missions
- **Dr. Hal Puthoff** - SRI physicist who led early experiments
- **Dr. Edwin May** - Director of cognitive sciences division at SRI
---
## π¬ Research Applications
### Academic Papers Using This Dataset
*(We'd love to list your work here! Open a discussion or PR)*
### Potential Research Questions
1. **Linguistics:** How did remote viewing terminology evolve across programs?
2. **Psychology:** What cognitive biases are evident in session transcripts?
3. **History:** How did Cold War tensions influence psychic espionage funding?
4. **Statistics:** Can we replicate the AIR study's statistical analysis with modern methods?
5. **AI Ethics:** What does government-funded psychic research teach us about evaluating anomalous claims in AI?
---
## π Citation
If you use this dataset in your research, please cite:
```bibtex
@dataset{daugherty2025stargate,
author = {Bryan Daugherty},
title = {STARGATE: CIA Remote Viewing Archive},
year = {2025},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/GotThatData/STARGATE}
}
```
---
## π Related Resources
- **CIA CREST Database:** [https://www.cia.gov/readingroom/](https://www.cia.gov/readingroom/)
- **AIR Final Report (1995):** [Research Evaluation](https://www.cia.gov/readingroom/docs/CIA-RDP96-00789R003800200001-0.pdf)
- **Companion Dataset:** [STARGATE-Processed](https://huggingface.co/datasets/GotThatData/STARGATE-Processed) - OCR-extracted text versions
---
## π License
MIT License - freely available for research and commercial use.
**Note:** These are declassified U.S. government documents and are in the public domain. The dataset compilation and metadata are released under MIT.
---
## π Acknowledgments
- **CIA CREST Team** - For declassifying and digitizing these historical documents
- **Internet Archive** - For mirroring and preserving government data
- **Hugging Face Community** - For providing infrastructure for large-scale dataset hosting
---
## π Known Issues & Future Work
- **OCR Quality:** Scanned 1970s-1990s documents have variable quality. Some pages are illegible.
- **Missing Documents:** Not all STARGATE-related documents may be included (ongoing FOIA releases).
- **Metadata Gaps:** Some documents lack complete metadata (date, program name, etc.).
**Roadmap:**
- [ ] Complete OCR extraction for all PDFs β `STARGATE-Processed` dataset
- [ ] Add entity annotations (people, locations, programs)
- [ ] Create topic models for common themes
- [ ] Build search/query interface (Space app)
---
## π¬ Feedback & Contributions
Found an error? Have a feature request? Want to contribute OCR'd text or annotations?
- **Discussions:** [Open a discussion](https://huggingface.co/datasets/GotThatData/STARGATE/discussions)
- **Contact:** YourFriends@smartledger.solutions
---
*"The truth is rarely pure and never simple."* β Oscar Wilde
|