DropTheHQ commited on
Commit
cd9764b
·
verified ·
1 Parent(s): d24ec3d

Add dataset card with full description

Browse files
Files changed (1) hide show
  1. README.md +92 -0
README.md ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - graph-ml
5
+ - feature-extraction
6
+ language:
7
+ - en
8
+ size_categories:
9
+ - 1M<n<10M
10
+ tags:
11
+ - knowledge-graph
12
+ - graph-neural-networks
13
+ - entity-linking
14
+ - relationship-extraction
15
+ pretty_name: DropThe Entity Relationship Graph
16
+ ---
17
+
18
+ # DropThe Entity Relationship Graph
19
+
20
+ A large-scale entity relationship dataset containing **2.9 million typed, directional connections** between 1.8 million entities spanning entertainment, media, finance, and technology. Extracted from the [DropThe](https://dropthe.org) knowledge graph.
21
+
22
+ ## Dataset Description
23
+
24
+ While most open knowledge graphs focus on encyclopedic facts (Wikidata) or narrow domains (MovieLens for ratings), this dataset captures **operational relationships** -- the connections that actually matter for building recommendation systems, search engines, and analytical tools. Every edge is typed, directional, and timestamped.
25
+
26
+ ### Link Types
27
+
28
+ | Link Type | Count | Example |
29
+ |-----------|-------|---------|
30
+ | `acted_in` | 820,000+ | Florence Pugh -> Oppenheimer |
31
+ | `directed` | 96,000+ | Christopher Nolan -> Oppenheimer |
32
+ | `produced` | 145,000+ | Emma Thomas -> Oppenheimer |
33
+ | `works_at` | 230,000+ | Tim Cook -> Apple |
34
+ | `founded` | 18,000+ | Jensen Huang -> NVIDIA |
35
+ | `distributed_by` | 52,000+ | Oppenheimer -> Universal Pictures |
36
+ | `related_to` | 1,200,000+ | Bitcoin -> Ethereum (thematic) |
37
+ | `traded_on` | 340,000+ | Bitcoin -> Binance |
38
+ | `parent_of` | 46,000+ | Alphabet -> Google |
39
+
40
+ ### Graph Statistics
41
+
42
+ - **Nodes**: 1,828,455 entities across 5 types (movies, series, people, companies, cryptocurrencies)
43
+ - **Edges**: 2,947,733 typed directional links
44
+ - **Average degree**: 3.2 connections per entity
45
+ - **Largest connected component**: Covers 94% of all entities
46
+ - **Diameter**: 8 hops (entertainment subgraph)
47
+
48
+ ### Data Format
49
+
50
+ Each edge record contains:
51
+
52
+ - **source_id**: Entity ID of the origin node
53
+ - **target_id**: Entity ID of the destination node
54
+ - **link_type**: Typed relationship label (see table above)
55
+ - **weight**: Confidence score (0.0-1.0) based on source reliability
56
+ - **created_at**: Timestamp of link creation
57
+ - **source_table**: Whether the entity comes from `entities` or `geo_entities`
58
+
59
+ ## Intended Use
60
+
61
+ This graph dataset is particularly suited for:
62
+
63
+ - **Graph neural networks** -- Train GCN, GAT, or GraphSAGE models for link prediction and node classification
64
+ - **Knowledge graph completion** -- Predict missing edges using TransE, RotatE, or other embedding methods
65
+ - **Recommendation systems** -- Build multi-hop recommendation paths (actor -> movie -> director -> other movies)
66
+ - **Community detection** -- Identify clusters in the entertainment industry (studios, talent agencies, franchise ecosystems)
67
+ - **Temporal analysis** -- Study how industry relationships evolve over time using edge timestamps
68
+
69
+ ## Methodology
70
+
71
+ Links are extracted through a combination of structured API ingestion (TMDB, Wikidata, CoinGecko), automated entity resolution using the DropThe alias system (80,000+ aliases), and a bidirectional auto-linker that ensures graph consistency. The full pipeline is described on [DropThe](https://dropthe.org).
72
+
73
+ The enrichment process runs on a local PostgreSQL instance with validation gates that check referential integrity, duplicate detection, and type conformity before any edges are promoted to the production graph on [DropThe](https://dropthe.org/data/).
74
+
75
+ ## Sample
76
+
77
+ The included `sample_edges.csv` contains 20 representative edges across multiple relationship types, demonstrating the schema and data format.
78
+
79
+ ## License
80
+
81
+ MIT License.
82
+
83
+ ## Citation
84
+
85
+ ```
86
+ @dataset{dropthe_graph_2026,
87
+ title={DropThe Entity Relationship Graph},
88
+ author={DropThe},
89
+ year={2026},
90
+ url={https://dropthe.org}
91
+ }
92
+ ```