Wikidata NER Classifier 0.7.1
wikidata-ner-classifier predicts retrieval-oriented NER types in two ways:
- Wikidata items: deterministic prediction from P31/P279 token clues and an optional description.
- Input data: LLM prediction from a target mention and its context, supplied as free text or tabular data.
Both paths return types from the same hierarchy:
coarse_type -> fine_type -> subtype -> specific_type
The prediction can be used to narrow the candidate-retrieval space before entity linking. The library does not identify or retrieve a Wikidata QID.
Installation
pip install wikidata-ner-classifier
1. Predict NER types for Wikidata items
Use WikidataNERClassifier when the input is already a Wikidata item and its
P31/P279 type labels or aliases are available. Prediction is deterministic and
does not require an LLM or network request.
from wikidata_ner import WikidataNERClassifier
classifier = WikidataNERClassifier()
prediction = classifier.predict(
qid="Q3441181",
types=[
{"id": "Q11424", "name": "film"},
],
description="1964 sword-and-sandal film directed by Giuseppe Vari",
)
print(prediction.coarse_type) # CREATIVE_WORK
print(prediction.fine_type) # FILM
print(prediction.specific_type) # SWORD_AND_SANDAL_FILM
print(prediction.retrieval_key)
# CREATIVE_WORK/FILM/SWORD_AND_SANDAL_FILM
The P31/P279 token clues select the semantic branch. The description may refine the result, but it does not replace the type-token evidence.
A complete entity mapping can also be passed directly:
prediction = classifier.predict_entity(
{
"qid": "Q3441181",
"types": [{"id": "Q11424", "name": "film"}],
"description": "1964 sword-and-sandal film",
}
)
For multiple Wikidata items, use predict_batch():
predictions = classifier.predict_batch(
[
{
"qid": "Q3441181",
"types": [{"name": "film"}],
"description": "1964 sword-and-sandal film",
},
{
"qid": "Q7259",
"types": [{"name": "human"}],
"description": "English mathematician and writer",
},
]
)
2. Predict NER types for input data with an LLM
Use OpenRouterNERClassifier when the input is a mention whose type must be
inferred from context. The context can be free text, a structured record, or a
table cell.
Set an OpenRouter API key:
export OPENROUTER_API_KEY="..."
Create the classifier:
from wikidata_ner import OpenRouterNERClassifier
classifier = OpenRouterNERClassifier(
model="openai/gpt-oss-120b",
provider="cerebras",
allow_fallbacks=False,
reasoning_effort="low",
)
Free text
prediction = classifier.predict_text(
"Rome Against Rome is a 1964 sword-and-sandal film.",
mention="Rome Against Rome",
)
print(prediction.coarse_type) # CREATIVE_WORK
print(prediction.fine_type) # FILM
print(prediction.specific_type) # SWORD_AND_SANDAL_FILM
Only the supplied target mention is classified. The surrounding sentence is contextual evidence.
Structured input
prediction = classifier.predict_record(
{
"label": "Chrysler Cirrus",
"description": "mid-size four-door sedan model",
"manufacturer": "Chrysler",
}
)
print(prediction.coarse_type) # PRODUCT
print(prediction.fine_type) # VEHICLE_WEAPON_OR_EQUIPMENT_MODEL
print(prediction.subtype) # CAR_MODEL, when supported by the evidence
Existing QIDs, URLs, popularity, priors, and previous NER fields are not used as prediction evidence.
Tabular input
For one table cell, provide the column meaning and bounded row/column context:
prediction = classifier.predict_table_cell(
"Germany",
column_header="country name",
row_context={
"manufacturer": "Daimler AG",
"vehicle_model": "Chrysler Cirrus",
"assembly_location": "Sterling Heights, Michigan",
},
same_column_values=[
"Germany",
"United States",
"Canada",
],
table_name="vehicle_production.csv",
)
print(prediction.coarse_type) # LOCATION
print(prediction.fine_type) # COUNTRY_OR_SOVEREIGN_STATE
For multiple cells, use TableCellTask and predict_table_cells():
from wikidata_ner import TableCellTask
tasks = [
TableCellTask(
cell="Germany",
column_header="country name",
row_context={"manufacturer": "Daimler AG"},
same_column_values=["Germany", "United States", "Canada"],
),
TableCellTask(
cell="United States",
column_header="country name",
row_context={"manufacturer": "General Motors"},
same_column_values=["Germany", "United States", "Canada"],
),
]
predictions = classifier.predict_table_cells(tasks)
The production batch limit is 8 targets per physical request. Larger iterables are split into multiple requests automatically.
Prediction output
Both classifiers expose retrieval-oriented fields such as:
coarse_typefine_typesubtypespecific_typeandspecific_typesretrieval_key,retrieval_path, andretrieval_tagsconfidenceabstainedandabstention_reason
The model predicts semantic types only. QIDs and retrieval metadata are never generated by the LLM; the library validates the prediction and constructs the retrieval fields locally.
Release history
See CHANGELOG.md for version details.
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wikidata_ner_classifier-0.7.1.tar.gz.
File metadata
- Download URL: wikidata_ner_classifier-0.7.1.tar.gz
- Upload date:
- Size: 152.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f10ae629c73fe3249cf26fe615f0faa4e6700cc32109f60a798fb0bda3a139c
|
|
| MD5 |
9214ce1649477fd81304ec572ff7f9ef
|
|
| BLAKE2b-256 |
a54be77292d4ee402111125482eea117cda61616634b76833226e77d182d5e9f
|
File details
Details for the file wikidata_ner_classifier-0.7.1-py3-none-any.whl.
File metadata
- Download URL: wikidata_ner_classifier-0.7.1-py3-none-any.whl
- Upload date:
- Size: 138.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c61be85c69983cfded0ed1cbdb76185878ab31e2e65fb36df793b819ceba4003
|
|
| MD5 |
b1572d47db312f3d1593f082a8c01074
|
|
| BLAKE2b-256 |
8117d3f45248747aeca58495f40bbe375e6d3ba55a93db9cf7c59359e4dcf3b4
|