Parent_name,parent_ID,parent_cty,category,confidence,method
APPLE INC,US123456,US,company,0.99,rule
JOHN SMITH,GB789012,GB,individual,0.95,llm_api
FAMILIA GARCIA & HIJOS SL,ES345678,ES,family_firm,0.91,xlmr
DEPARTMENT OF DEFENSE,US000001,US,government,1.00,rule
QUINNELL SEPTIC & WELL SERVICE,US148650,US,unknown,0.72,unknown
Status
#
Task
Status
1
XLM-R inference on 408K unknowns
In progress
2
FINAL_XLMR.csv (89% coverage)
Pending
3
Archive model weights
Pending
4
Methodology section
Simulation
Click an entity. See which step classifies it. Switch tabs to view code from each stage.
APPLE INCMR. AHMED KHAN & SONS LTDCOMMUNE DE PARISJOHN SMITHQUINNELL SEPTIC
EntityAPPLE INC
Step1 (Rule)
Outputcompany
# Keywords, suffixes, government patternsif name in GOVERNMENT_KEYWORDS: return'government'if'& SONS'in name: return'family_firm'if suffix in ['INC', 'LTD', 'GMBH']: return'company'if title in ['MR.', 'DR.'] and word_count <=3: return'individual'returnNone# pass to Step 2