summaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2012-11-12 08:07:15 -0700
committerRocky Madden <git@rockymadden.com>2012-11-12 08:07:15 -0700
commita2baf89028bf0d15697ac60548c269a3d7d65371 (patch)
treef4052e1f1c1f553ee219b0702992fb6ef6c5ef29 /readme.md
parent2f4dfd37381f85e41fda24ea0a7a73bedb1e1b77 (diff)
downloadstringmetric-a2baf89028bf0d15697ac60548c269a3d7d65371.tar.gz
stringmetric-a2baf89028bf0d15697ac60548c269a3d7d65371.tar.bz2
stringmetric-a2baf89028bf0d15697ac60548c269a3d7d65371.zip
Language tweaks and removed repetitive information.
Diffstat (limited to 'readme.md')
-rwxr-xr-xreadme.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/readme.md b/readme.md
index d43bfb3..236e991 100755
--- a/readme.md
+++ b/readme.md
@@ -1,11 +1,10 @@
#stringmetric [![Build Status](https://secure.travis-ci.org/rockymadden/stringmetric.png)](http://travis-ci.org/rockymadden/stringmetric)
-A collection of string metrics and supporting algorithms implemented in Scala. There exists two packages which house said metrics and algorithms.
+A small library of string metrics and phonetic algorithms implemented in Scala. Said metrics and algorithms are broken out into packages:
-* The __similarity package__ houses metrics and supporting algorithms which determine distance and coefficients. This package includes the Dice's coefficient, Hamming distance, Jaro distance, Jaro-Winkler distance, Levenshtein distance, N-Gram distance, and weighted Levenshtein distance metrics/algorithms.
+* The __similarity package__ houses metrics and supporting algorithms which determine distance and coefficients (e.g. Dice's coefficient and Levenshtein distance).
+* The __phonetic package__ houses metrics and supporting algorithms which determine if two strings sound the same phonetically (e.g. Metaphone and Soundex). All phonetic string metrics have a standalone algorithm counterpart. They provide a means to determine the phonetic representation of the argument passed.
-* The __phonetic package__ houses metrics and supporting algorithms which determine if two strings sound the same, phonetically. All phonetic string metrics have a standalone algorithm counterpart. They provide a means to determine the phonetic representation of the argument passed. This package includes the Metaphone, NYSIIS, refined Soundex, and Soundex metrics/algorithms.
-
-Each string metric and supporting algorithm has a shell based CLI.
+Each string metric and supporting algorithm has a CLI.
## Metrics and Phonetic Algorithms
* __[Dice / Sorensen](http://en.wikipedia.org/wiki/Dice%27s_coefficient)__