File size: 2,494 Bytes
75246d0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: cc-by-4.0
task_categories:
  - question-answering
  - text-generation
language:
  - en
tags:
  - nuremberg-trials
  - history
  - law
  - world-war-2
  - international-law
  - war-crimes
size_categories:
  - 100M<n<1B
---

# Nuremberg Trials Complete Dataset

The most comprehensive digital collection of Nuremberg Trials documents available.

## Contents

### Harvard Law School Transcripts (518MB)
- **13 trials** with complete transcripts
- **153,010 pages** of testimony
- Source: [Harvard Law School Nuremberg Trials Project](https://nuremberg.law.harvard.edu/)

| Trial | Name | Pages |
|-------|------|-------|
| 1 | Medical Case (Karl Brandt et al.) | 11,681 |
| 2 | Milch Case | 3,105 |
| 3 | Justice Case | 11,122 |
| 4 | Hostages Case | 10,549 |
| 5 | Pohl Case | 8,224 |
| 6 | Einsatzgruppen Case | 6,893 |
| 7 | IMT - Main Trial (Goering et al.) | 17,268 |
| 8 | Flick Case | 11,087 |
| 9 | IG Farben Case | 15,628 |
| 10 | RuSHA Case | 5,415 |
| 11 | Krupp Case | 13,447 |
| 12 | Ministries Case | 29,077 |
| 13 | High Command Case | 9,514 |

### Yale Avalon Project (192MB)
- **857 documents**
- **11.3 million words**
- Includes: Judgments, indictments, London Charter, trial proceedings (22 volumes), Nazi Conspiracy & Aggression documents
- Source: [Yale Law School Avalon Project](https://avalon.law.yale.edu/subject_menus/imt.asp)

### Wikipedia (5.5MB)
- **49 pages** of structured data
- 24 defendant biographies
- 11 trial overview pages
- 8 key prosecutors/judges
- 6 Nazi organization pages

## Usage

```python
from datasets import load_dataset

# Load Harvard transcripts
dataset = load_dataset("Adherence/nuremberg-trials-complete", data_dir="harvard_transcripts")

# Load Yale documents
import json
from huggingface_hub import hf_hub_download

yale_path = hf_hub_download(
    repo_id="Adherence/nuremberg-trials-complete",
    filename="yale_avalon/all_documents.json",
    repo_type="dataset"
)
with open(yale_path) as f:
    yale_docs = json.load(f)
```

## License

This dataset aggregates public domain historical documents. The compilation is released under CC-BY-4.0.

## Citation

If you use this dataset, please cite the original sources:
- Harvard Law School Nuremberg Trials Project
- Yale Law School Avalon Project
- Wikipedia contributors

## About

Created to make the historical record of the Nuremberg Trials accessible through AI.
Part of the [Nuremberg Trials AI project](https://huggingface.co/spaces/Adherence/nuremberg-trials-ai).