Skip to main content

Abydos NLP/IR library

Project description

Abydos

CI & Test Status

Travis-CI Build Status Circle-CI Build Status AppVeyor Build Status Semaphore Build Status Coverage Status

Code Quality

Code Climate Scrutinizer Codacy CodeFactor

Dependencies

Requirements Status Known Vulnerabilities Updates FOSSA Status

Local Analysis

Pylint Score flake8 Errors black

Usage

Documentation Status Binder License: GPL v3 Libraries.io SourceRank Zenodo

Contribution

CII Best Practices 'Waffle.io - Columns and their card count' OpenHUB

PyPI

PyPI PyPI versions

conda-forge

conda-forge conda-forge downloads conda-forge platforms


abydos

Abydos NLP/IR library
Copyright 2014-2018 by Christopher C. Little

Abydos is a library of phonetic algorithms, string distance measures & metrics, stemmers, and string fingerprinters including:

  • Phonetic algorithms
    • Robert C. Russell’s Index

    • American Soundex

    • Refined Soundex

    • Daitch-Mokotoff Soundex

    • Kölner Phonetik

    • NYSIIS

    • Match Rating Algorithm

    • Metaphone

    • Double Metaphone

    • Caverphone

    • Alpha Search Inquiry System

    • Fuzzy Soundex

    • Phonex

    • Phonem

    • Phonix

    • SfinxBis

    • phonet

    • Standardized Phonetic Frequency Code

    • Statistics Canada

    • Lein

    • Roger Root

    • Oxford Name Compression Algorithm (ONCA)

    • Eudex phonetic hash

    • Haase Phonetik

    • Reth-Schek Phonetik

    • FONEM

    • Parmar-Kumbharana

    • Davidson’s Consonant Code

    • SoundD

    • PSHP Soundex/Viewex Coding

    • an early version of Henry Code

    • Norphone

    • Dolby Code

    • Phonetic Spanish

    • Spanish Metaphone

    • MetaSoundex

    • SoundexBR

    • NRL English-to-phoneme

    • Beider-Morse Phonetic Matching

  • String distance metrics
    • Levenshtein distance

    • Optimal String Alignment distance

    • Levenshtein-Damerau distance

    • Hamming distance

    • Tversky index

    • Sørensen–Dice coefficient & distance

    • Jaccard similarity coefficient & distance

    • overlap similarity & distance

    • Tanimoto coefficient & distance

    • Minkowski distance & similarity

    • Manhattan distance & similarity

    • Euclidean distance & similarity

    • Chebyshev distance

    • cosine similarity & distance

    • Jaro distance

    • Jaro-Winkler distance (incl. the strcmp95 algorithm variant)

    • Longest common substring

    • Ratcliff-Obershelp similarity & distance

    • Match Rating Algorithm similarity

    • Normalized Compression Distance (NCD) & similarity

    • Monge-Elkan similarity & distance

    • Matrix similarity

    • Needleman-Wunsch score

    • Smither-Waterman score

    • Gotoh score

    • Length similarity

    • Prefix, Suffix, and Identity similarity & distance

    • Modified Language-Independent Product Name Search (MLIPNS) similarity & distance

    • Bag distance

    • Editex distance

    • Eudex distances

    • Sift4 distance

    • Baystat distance & similarity

    • Typo distance

    • Indel distance

    • Synoname

  • Stemmers
    • the Lovins stemmer

    • the Porter and Porter2 (Snowball English) stemmers

    • Snowball stemmers for German, Dutch, Norwegian, Swedish, and Danish

    • CLEF German, German plus, and Swedish stemmers

    • Caumann’s German stemmer

    • UEA-Lite Stemmer

    • Paice-Husk Stemmer

    • Schinke Latin stemmer

    • S stemmer

  • String Fingerprints
    • string fingerprint

    • q-gram fingerprint

    • phonetic fingerprint

    • Pollock & Zomora’s skeleton key

    • Pollock & Zomora’s omission key

    • Cisłak & Grabowski’s occurrence fingerprint

    • Cisłak & Grabowski’s occurrence halved fingerprint

    • Cisłak & Grabowski’s count fingerprint

    • Cisłak & Grabowski’s position fingerprint

    • Synoname Toolcode


Installation

Required libraries:

  • Numpy

  • Six

Recommended libraries:

  • PylibLZMA (Python 2 only–for LZMA compression string distance metric)

To install Abydos (master) from Github source:

git clone https://github.com/chrislit/abydos.git --recursive
cd abydos
python setup install

If your default python command calls Python 2.7 but you want to install for Python 3, you may instead need to call:

python3 setup install

To install Abydos (latest release) from PyPI using pip:

pip install abydos

To install from conda-forge:

conda install abydos

It should run on Python 2.7 and Python 3.3-3.7.

Testing & Contributing

To run the whole test-suite just call tox:

tox

The tox setup has the following environments: py27, py36, doctest, py27-regression, py36-regression, pylint, pycodestyle, flake8, doc8, badges, docs, py27-fuzz, & py36-fuzz. So if only want to generate documentation (in HTML, EPUB, & PDF formats), just call:

tox -e docs

In order to only run & generate Flake8 reports, call:

tox -e flake8

Contributions such as bug reports, PRs, suggestions, desired new features, etc. are welcome through the Github Issues & Pull requests.

Release History

0.3.5 (2018-10-31) cantankerous carl

doi:10.5281/zenodo.1463204

Version 0.3.5 focuses on refactoring the whole project. The API itself remains largely the same as in previous versions, but underlyingly modules have been split up. Essentially no new features are added (bugfixes aside) in this version.

Changes:

  • Refactored library and tests into smaller modules

  • Broke compression distances (NCD) out into separate functions

  • Adopted Black code style

  • Added pyproject.toml to use Poetry for packaging (but will continue using setuptools and setup.py for the present)

  • Minor bug fixes

0.3.0 (2018-10-15) carl

doi:10.5281/zenodo.1462443

Version 0.3.0 focuses on additional phonetic algorithms, but does add numerous distance measures, fingerprints, and even a few stemmers. Another focus was getting everything to build again (including docs) and to move to more standard modern tools (flake8, tox, etc.).

Changes:

  • Fixed implementation of Bag distance

  • Updated BMPM to version 3.10

  • Fixed Sphinx documentation on readthedocs.org

  • Split string fingerprints out of clustering into their own module

  • Added support for q-grams to skip-n characters

  • New phonetic algorithms:
    • Statistics Canada

    • Lein

    • Roger Root

    • Oxford Name Compression Algorithm (ONCA)

    • Eudex phonetic hash

    • Haase Phonetik

    • Reth-Schek Phonetik

    • FONEM

    • Parmar-Kumbharana

    • Davidson’s Consonant Code

    • SoundD

    • PSHP Soundex/Viewex Coding

    • an early version of Henry Code

    • Norphone

    • Dolby Code

    • Phonetic Spanish

    • Spanish Metaphone

    • MetaSoundex

    • SoundexBR

    • NRL English-to-phoneme

  • New string fingerprints:
    • Cisłak & Grabowski’s occurrence fingerprint

    • Cisłak & Grabowski’s occurrence halved fingerprint

    • Cisłak & Grabowski’s count fingerprint

    • Cisłak & Grabowski’s position fingerprint

    • Synoname Toolcode

  • New distance measures:
    • Minkowski distance & similarity

    • Manhattan distance & similarity

    • Euclidean distance & similarity

    • Chebyshev distance & similarity

    • Eudex distances

    • Sift4 distance

    • Baystat distance & similarity

    • Typo distance

    • Indel distance

    • Synoname

  • New stemmers:
    • UEA-Lite Stemmer

    • Paice-Husk Stemmer

    • Schinke Latin stemmer

  • Eliminated ._compat submodule in favor of six

  • Transitioned from PEP8 to flake8, etc.

  • Phonetic algorithms now consistently use max_length=-1 to indicate that there should be no length limit

  • Added example notebooks in binder directory

0.2.0 (2015-05-27) berthold

  • Added Caumanns’ German stemmer

  • Added Lovins’ English stemmer

  • Updated Beider-Morse Phonetic Matching to 3.04

  • Added Sphinx documentation

0.1.1 (2015-05-12) albrecht

  • First Beta release to PyPI

Authors

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

abydos-0.3.5.tar.gz (205.5 kB view hashes)

Uploaded Source

Built Distribution

abydos-0.3.5-py2.py3-none-any.whl (254.4 kB view hashes)

Uploaded Python 2 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