Metadata-Version: 2.1
Name: PyRuSH
Version: 1.0.3b1
Summary: A fast implementation of RuSH (Rule-based sentence Segmenter using Hashing).
Home-page: https://github.com/jianlins/PyRuSH
Author: Jianlin
Author-email: jianlinshi.cn@gmail.com
License: Apache License
Keywords: PyFastNER,ner,regex
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Linguistic
Requires-Dist: PyFastNER (>=1.0.8b1)
Requires-Dist: spacy (>=2.2.2)

PyRuSH
=========

PyRuSH is the python implementation of `RuSH <https://github.com/jianlins/RuSH>`_ (**Ru** le-based sentence **S** egmenter using **H** ashing), which is originally developed using Java. RuSH is an efficient, reliable, and easy adaptable rule-based sentence segmentation solution. It is specifically designed to handle the telegraphic written text in clinical note. It leverages a nested hash table to execute simultaneous rule processing, which reduces the impact of the rule-base growth on execution time and eliminates the effect of rule order on accuracy.

If you wish to cite RuSH in a publication, please use:

Jianlin Shi ; Danielle Mowery ; Kristina M. Doing-Harris ; John F. Hurdle.RuSH: a Rule-based Segmentation Tool Using Hashing for Extremely Accurate Sentence Segmentation of Clinical Text. AMIA Annu Symp Proc. 2016: 1587.

The full text can be found `here <https://knowledge.amia.org/amia-63300-1.3360278/t005-1.3362920/f005-1.3362921/2495498-1.3363244/2495498-1.3363247?timeStamp=1479743941616>`_.



Installation
------------

    pip install PyRuSH


How to use
------------

A standalone RuSH class is available to be directly used in your code. 

    >>> from PyRuSH import RuSH
    >>> input_str = "The patient was admitted on 03/26/08\n and was started on IV antibiotics elevation" +\
    >>>              ", was also counseled to minimizing the cigarette smoking. The patient had edema\n\n" +\
    >>>              "\n of his bilateral lower extremities. The hospital consult was also obtained to " +\
    >>>              "address edema issue question was related to his liver hepatitis C. Hospital consult" +\
    >>>              " was obtained. This included an ultrasound of his abdomen, which showed just mild " +\
    >>>              "cirrhosis. "
    >>> rush = RuSH('../conf/rush_rules.tsv')
    >>> sentences=rush.segToSentenceSpans(input_str)
    >>> for sentence in sentences:
    >>>     print("Sentence({0}-{1}):\t>{2}<".format(sentence.begin, sentence.end, input_str[sentence.begin:sentence.end]))




