Skip to main content

Spacy Pipeline Component for Hydrologic Entity Extraction

Project description

WATERWHEEL

WATERWHEEL (WATERloo Water and Hydrologic Entity Extractor and Linker) is a spaCy pipeline component that detects rivers, lakes, and other hydrologic entities, and links these entities to Wikidata. Although an acronym, we typically style the name as WaterWheel to avoid the impression that we're screaming all the time.

PyPI: https://pypi.org/project/waterwheel/

Simple Usage

WaterWheel is written as a spaCy module. Sample usage:

import spacy
from waterwheel import WaterWheel

nlp = spacy.load('en_core_web_sm')
nlp.add_pipe(WaterWheel(nlp))

doc = nlp('The ultimate source of the Mackenzie River is Thutade Lake.')

for ent in doc.ents:
    print(f'{ent.text}, type: {ent.label_}, {ent._.wikilink} [{ent.start_char}, {ent.end_char}]')

# Results:
# Mackenzie River, type: RIVER, https://www.wikidata.org/wiki/Q3411 [27, 42]
# Thutade Lake, type: LAKE, https://www.wikidata.org/wiki/Q7333634 [46, 58]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

waterwheel-0.4.0.tar.gz (2.9 MB view hashes)

Uploaded Source

Built Distribution

waterwheel-0.4.0-py3-none-any.whl (2.9 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page