Skip to main content

Phrase recognizer component for spacy pipeline

Project description

Installation from pip3

pip3 install --verbose phrase_detective 
python -m spacy download en_core_web_trf
python -m spacy download es_dep_news_trf
python -m spacy download de_dep_news_trf

Usage

Please refer to api docs

Detect noun phrases

import spacy
from spacy import Language
from phrase_detective import NounPhraseRecognizer, PKG_INDICES

@Language.factory("nprecog")
def create_np_parser(nlp: Language, name: str):
  return NounPhraseRecognizer(nlp) 

def noun_phrase(lang, sentence):
  nlp = spacy.load(PKG_INDICES[lang])
  nlp.add_pipe("nprecog")
  doc = nlp(sentence)
  for np in doc._.noun_phrases:
    print(np.text)

Detect verb phrases

import spacy
from spacy import Language
from phrase_detective import VerbKnowledgeRecognizer, PKG_INDICES

@Language.factory("vkbrecog")
def create_vkb_parser(nlp: Language, name: str):
  return VerbKnowledgeRecognizer(nlp) 

def verb_knowledge(lang, sentence):
  nlp = spacy.load(PKG_INDICES[lang])
  nlp.add_pipe("vkbrecog")
  doc = nlp(sentence)
  for v in doc._.verbs:
    print("TEXT: {}, TAG: {}, FORM: {}, ORIGNAL: {}".format(v.text, v.tag_, spacy.explain(v.tag_), v.lemma_))
  for pp in doc._.passive_phrases:
    print(pp.text)
  for vp in doc._.verb_phrases:
    print(vp)

Development

Clone project

git clone https://github.com/qishe-nlp/phrase-detective.git

Install poetry

Install dependencies

poetry update

Test and Issue

poetry run pytest -rP

which run tests under tests/*

Create sphinx docs

poetry shell
cd apidocs
sphinx-apidoc -f -o source ../phrase_detective
make html
python -m http.server -d build/html

Hose docs on github pages

cp -rf apidocs/build/html/* docs/

Build

  • Change version in pyproject.toml and phrase_detective/__init__.py
  • Build python package by poetry build

Git commit and push

Publish from local dev env

  • Set pypi test environment variables in poetry, refer to poetry doc
  • Publish to pypi test by poetry publish -r test

Publish through CI

git tag [x.x.x]
git push origin master

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

phrase_detective-0.1.35.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

phrase_detective-0.1.35-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file phrase_detective-0.1.35.tar.gz.

File metadata

  • Download URL: phrase_detective-0.1.35.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.12.0 Linux/6.5.0-1025-azure

File hashes

Hashes for phrase_detective-0.1.35.tar.gz
Algorithm Hash digest
SHA256 b02fab8104253b694574ed5f1191e26b8decc892d38932577c26154389f52f02
MD5 647ddfba2ecd6423f9c0532a1d182b96
BLAKE2b-256 1152a4d0a9f32b9473fbc37c8edb4eeca621d76784f8ce72d847802d374dcfde

See more details on using hashes here.

File details

Details for the file phrase_detective-0.1.35-py3-none-any.whl.

File metadata

  • Download URL: phrase_detective-0.1.35-py3-none-any.whl
  • Upload date:
  • Size: 9.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.12.0 Linux/6.5.0-1025-azure

File hashes

Hashes for phrase_detective-0.1.35-py3-none-any.whl
Algorithm Hash digest
SHA256 743a48f8e4bda4e8a410cbfa9c72fd583fa62e7cbdc863fbd2fbcc3ef6a1734f
MD5 a10246baef8485841e14d3d80faa6a69
BLAKE2b-256 3079210dc784c273564b6bbf2d1405a3bf0b8cefff2efea120b1a58a697597b6

See more details on using hashes here.

Supported by

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