File size: 12,292 Bytes
6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b 6998159 4aae51b |
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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 |
---
language:
- en
license: apache-2.0
task_categories:
- text-classification
- feature-extraction
tags:
- entity-linking
- named-entity-recognition
- knowledge-base
- organizations
- people
- sqlite
- vector-search
- embeddings
size_categories:
- 1M<n<10M
pretty_name: Entity References Database
configs:
- config_name: full
description: Full database with complete source metadata
- config_name: lite
description: Core fields + embeddings only (recommended)
---
# Entity References Database
A comprehensive entity database for organizations, people, roles, and locations with 768-dimensional embeddings for semantic matching. Built from authoritative sources (GLEIF, SEC, Companies House, Wikidata) for entity linking and named entity disambiguation.
## Dataset Description
- **Repository:** [Corp-o-Rate-Community/entity-references](https://huggingface.co/datasets/Corp-o-Rate-Community/entity-references)
- **Paper:** N/A
- **Point of Contact:** Corp-o-Rate-Community
### Dataset Summary
This dataset provides fast lookup and qualification of named entities using vector similarity search. It stores records from authoritative global sources with embeddings generated by `google/embeddinggemma-300m` (768 dimensions).
**Key Features:**
- **8M+ organization records** from GLEIF, SEC Edgar, Companies House, and Wikidata
- **Notable people** including executives, politicians, athletes, artists, and more
- **Roles and locations** with hierarchical relationships
- **Vector embeddings** for semantic similarity search
- **Canonical linking** across sources (same entity from multiple sources linked)
### Supported Tasks
- **Entity Linking**: Match extracted entity mentions to canonical database records
- **Named Entity Disambiguation**: Distinguish between entities with similar names
- **Knowledge Base Population**: Enrich extracted entities with identifiers and metadata
### Languages
English (en)
## Dataset Structure
### Schema (v2 - Normalized)
The database uses SQLite with the [sqlite-vec](https://github.com/asg017/sqlite-vec) extension for vector similarity search.
#### Organizations Table
| Column | Type | Description |
|--------|------|-------------|
| `id` | INTEGER | Primary key |
| `qid` | INTEGER | Wikidata QID as integer (e.g., 2283 for Q2283) |
| `name` | TEXT | Organization name |
| `name_normalized` | TEXT | Lowercased, normalized name |
| `source_id` | INTEGER FK | Reference to source_types |
| `source_identifier` | TEXT | LEI, CIK, Company Number, etc. |
| `region_id` | INTEGER FK | Reference to locations |
| `entity_type_id` | INTEGER FK | Reference to organization_types |
| `from_date` | TEXT | Founding/registration date (ISO format) |
| `to_date` | TEXT | Dissolution date (ISO format) |
| `canon_id` | INTEGER | ID of canonical record |
| `canon_size` | INTEGER | Size of canonical group |
| `record` | JSON | Full source record (omitted in lite) |
#### People Table
| Column | Type | Description |
|--------|------|-------------|
| `id` | INTEGER | Primary key |
| `qid` | INTEGER | Wikidata QID as integer |
| `name` | TEXT | Display name |
| `name_normalized` | TEXT | Lowercased, normalized name |
| `source_id` | INTEGER FK | Reference to source_types |
| `source_identifier` | TEXT | QID, Owner CIK, Person number |
| `country_id` | INTEGER FK | Reference to locations |
| `person_type_id` | INTEGER FK | Reference to people_types |
| `known_for_role_id` | INTEGER FK | Reference to roles |
| `known_for_org` | TEXT | Organization name |
| `known_for_org_id` | INTEGER FK | Reference to organizations |
| `from_date` | TEXT | Role start date (ISO format) |
| `to_date` | TEXT | Role end date (ISO format) |
| `birth_date` | TEXT | Date of birth (ISO format) |
| `death_date` | TEXT | Date of death (ISO format) |
| `record` | JSON | Full source record (omitted in lite) |
#### Roles Table
| Column | Type | Description |
|--------|------|-------------|
| `id` | INTEGER | Primary key |
| `qid` | INTEGER | Wikidata QID (e.g., 484876 for CEO Q484876) |
| `name` | TEXT | Role name (e.g., "Chief Executive Officer") |
| `name_normalized` | TEXT | Normalized name |
| `source_id` | INTEGER FK | Reference to source_types |
| `canon_id` | INTEGER | ID of canonical role |
#### Locations Table
| Column | Type | Description |
|--------|------|-------------|
| `id` | INTEGER | Primary key |
| `qid` | INTEGER | Wikidata QID (e.g., 30 for USA Q30) |
| `name` | TEXT | Location name |
| `name_normalized` | TEXT | Normalized name |
| `source_id` | INTEGER FK | Reference to source_types |
| `source_identifier` | TEXT | ISO code (e.g., "US", "CA") |
| `parent_ids` | TEXT JSON | Parent location IDs in hierarchy |
| `location_type_id` | INTEGER FK | Reference to location_types |
#### Embedding Tables (sqlite-vec)
| Table | Columns |
|-------|---------|
| `organization_embeddings` | org_id INTEGER, embedding FLOAT[768] |
| `organization_embeddings_scalar` | org_id INTEGER, embedding INT8[768] |
| `person_embeddings` | person_id INTEGER, embedding FLOAT[768] |
| `person_embeddings_scalar` | person_id INTEGER, embedding INT8[768] |
**Scalar (int8) embeddings** provide 75% storage reduction with ~92% recall at top-100.
#### Enum Lookup Tables
| Table | Values |
|-------|--------|
| `source_types` | gleif, sec_edgar, companies_house, wikidata |
| `people_types` | executive, politician, government, military, legal, professional, academic, artist, media, athlete, entrepreneur, journalist, activist, scientist, unknown |
| `organization_types` | business, fund, branch, nonprofit, ngo, foundation, government, international_org, political_party, trade_union, educational, research, healthcare, media, sports, religious, unknown |
| `simplified_location_types` | continent, country, subdivision, city, district, other |
### Data Splits
| Config | Size | Contents |
|--------|------|----------|
| `entities-lite.db` | ~50GB | Core fields + embeddings only |
| `entities.db` | ~74GB | Full records with source metadata |
The lite version is recommended for most use cases.
## Dataset Creation
### Source Data
#### Organizations
| Source | Records | Identifier | Coverage |
|--------|---------|------------|----------|
| [GLEIF](https://www.gleif.org/) | ~3.2M | LEI (Legal Entity Identifier) | Global companies with LEI |
| [SEC Edgar](https://www.sec.gov/) | ~100K+ | CIK (Central Index Key) | All SEC filers |
| [Companies House](https://www.gov.uk/government/organisations/companies-house) | ~5M | Company Number | UK registered companies |
| [Wikidata](https://www.wikidata.org/) | Variable | QID | Notable companies worldwide |
#### People
| Source | Records | Identifier | Coverage |
|--------|---------|------------|----------|
| [Wikidata](https://www.wikidata.org/) | Variable | QID | Notable people with English Wikipedia |
| [SEC Form 4](https://www.sec.gov/) | ~280K/year | Owner CIK | US public company insiders |
| [Companies House](https://www.gov.uk/government/organisations/companies-house) | ~15M+ | Person number | UK company officers |
### Embedding Model
| Property | Value |
|----------|-------|
| Model | `google/embeddinggemma-300m` |
| Dimensions | 768 |
| Framework | sentence-transformers |
| Size | ~300M parameters |
### Canonicalization
Records are linked across sources based on:
**Organizations:**
1. Same LEI (globally unique)
2. Same ticker symbol
3. Same CIK
4. Same normalized name + region
**People:**
1. Same Wikidata QID
2. Same normalized name + same organization
3. Same normalized name + overlapping date ranges
**Source priority:** gleif > sec_edgar > companies_house > wikidata
## Usage
### Installation
```bash
pip install corp-extractor
```
### Download
```bash
# Download lite version (recommended)
corp-extractor db download
# Download full version
corp-extractor db download --full
```
**Storage location:** `~/.cache/corp-extractor/entities-v2.db`
### Search
```bash
# Search organizations
corp-extractor db search "Microsoft"
# Search people
corp-extractor db search-people "Tim Cook"
# Search roles
corp-extractor db search-roles "CEO"
# Search locations
corp-extractor db search-locations "California"
# Check database status
corp-extractor db status
```
### Python API
```python
from statement_extractor.database import OrganizationDatabase, PersonDatabase
# Search organizations
org_db = OrganizationDatabase()
matches = org_db.search_by_name("Microsoft Corporation", top_k=5)
for match in matches:
print(f"{match.company.name} ({match.company.source}:{match.company.source_id})")
print(f" Similarity: {match.similarity_score:.3f}")
# Search people
person_db = PersonDatabase()
matches = person_db.search_by_name("Tim Cook", top_k=5)
for match in matches:
print(f"{match.person.name} - {match.person.known_for_role} at {match.person.known_for_org}")
```
### Use in Pipeline
```python
from statement_extractor.pipeline import ExtractionPipeline
pipeline = ExtractionPipeline()
ctx = pipeline.process("Microsoft CEO Satya Nadella announced new AI features.")
for stmt in ctx.labeled_statements:
print(f"{stmt.subject_fqn} --[{stmt.statement.predicate}]--> {stmt.object_fqn}")
```
## Technical Details
### Vector Search Performance
| Database Size | Search Time | Memory |
|---------------|-------------|--------|
| 100K records | ~50ms | ~500MB |
| 1M records | ~200ms | ~3GB |
| 8M records | ~500ms | ~20GB |
### Similarity Thresholds
| Score | Interpretation |
|-------|----------------|
| > 0.85 | Strong match (likely same entity) |
| 0.70 - 0.85 | Good match (probable same entity) |
| 0.55 - 0.70 | Moderate match (may need verification) |
| < 0.55 | Weak match (likely different entity) |
### Canonical ID Format
| Source | Prefix | Example |
|--------|--------|---------|
| GLEIF | `LEI` | `LEI:INR2EJN1ERAN0W5ZP974` |
| SEC Edgar | `SEC-CIK` | `SEC-CIK:0000789019` |
| Companies House | `UK-CH` | `UK-CH:00445790` |
| Wikidata | `WIKIDATA` | `WIKIDATA:Q2283` |
## Building from Source
```bash
# Import data sources
corp-extractor db import-gleif --download
corp-extractor db import-sec --download
corp-extractor db import-companies-house --download
corp-extractor db import-wikidata --limit 100000
corp-extractor db import-people --all --limit 50000
# Link equivalent records
corp-extractor db canonicalize
# Generate scalar embeddings (75% smaller)
corp-extractor db backfill-scalar
# Create lite version for deployment
corp-extractor db create-lite ~/.cache/corp-extractor/entities.db
```
### Wikidata Dump Import (Recommended for Large Imports)
```bash
# Download and import from Wikidata dump (~100GB)
corp-extractor db import-wikidata-dump --download --limit 50000
# Import only people
corp-extractor db import-wikidata-dump --download --people --no-orgs
# Import only locations
corp-extractor db import-wikidata-dump --dump dump.json.bz2 --locations --no-people --no-orgs
# Resume interrupted import
corp-extractor db import-wikidata-dump --dump dump.bz2 --resume
```
## Considerations for Using the Data
### Social Impact
This dataset enables entity linking for NLP applications. Users should be aware that:
- Organization and people records may be incomplete or outdated
- Historic people (deceased) are included with `death_date` field
- Not all notable entities are covered
### Biases
- Coverage is weighted toward English-speaking countries (US, UK) due to source availability
- Wikidata coverage depends on Wikipedia notability criteria
- SEC and Companies House data is limited to their respective jurisdictions
### Limitations
- The database does not automatically deduplicate across sources
- Embedding similarity is not perfect for entity disambiguation
- Updates require re-importing from source data
## License
Apache 2.0
## Citation
If you use this dataset, please cite:
```bibtex
@dataset{entity_references_2024,
title = {Entity References Database},
author = {Corp-o-Rate-Community},
year = {2024},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/Corp-o-Rate-Community/entity-references}
}
```
## Dataset Card Authors
Corp-o-Rate-Community
## Dataset Card Contact
Open an issue on the [GitHub repository](https://github.com/corp-o-rate/statement-extractor) for questions or feedback.
|