All Projects → SYSTRAN → fuzzy-match

SYSTRAN / fuzzy-match

Licence: MIT license
Library and command line utility to do approximate string matching of a source against a bitext index and get matched source and target.

Programming Languages

C++
36643 projects - #6 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to fuzzy-match

fuzzywuzzy
Fuzzy string matching for PHP
Stars: ✭ 60 (+93.55%)
Mutual labels:  fuzzy-matching, string-matching
levenshtein.c
Levenshtein algorithm in C
Stars: ✭ 77 (+148.39%)
Mutual labels:  fuzzy-matching, string-matching
ugly-todo
Just an Ugly To-Do app that I wanted to develop.
Stars: ✭ 35 (+12.9%)
Mutual labels:  cli-app
github-manager
🚀 Manage GitHub repositories with ease
Stars: ✭ 15 (-51.61%)
Mutual labels:  cli-app
zingg
Scalable identity resolution, entity resolution, data mastering and deduplication using ML
Stars: ✭ 655 (+2012.9%)
Mutual labels:  fuzzy-matching
fuzzychinese
A small package to fuzzy match chinese words
Stars: ✭ 50 (+61.29%)
Mutual labels:  fuzzy-matching
node-red-contrib-string
Provides a string manipulation node with a chainable UI based on the concise and lightweight stringjs.com.
Stars: ✭ 15 (-51.61%)
Mutual labels:  string-matching
ck550-macos
MacOS effect control SW for a CoolMaster CK550 & CK530 Keyboard (US Layout).
Stars: ✭ 14 (-54.84%)
Mutual labels:  cli-app
web-ext-deploy
A tool for deploying WebExtensions to multiple stores.
Stars: ✭ 28 (-9.68%)
Mutual labels:  cli-app
rapid-react
A light weight interactive CLI Automation Tool 🛠️ for rapid scaffolding of tailored React apps with Create React App under the hood.
Stars: ✭ 73 (+135.48%)
Mutual labels:  cli-app
stringdistance
A fuzzy matching string distance library for Scala and Java that includes Levenshtein distance, Jaro distance, Jaro-Winkler distance, Dice coefficient, N-Gram similarity, Cosine similarity, Jaccard similarity, Longest common subsequence, Hamming distance, and more..
Stars: ✭ 60 (+93.55%)
Mutual labels:  fuzzy-matching
GIG
[Unmaintained] A cli 💻 tool to generate gitignore files for your projects. Written in python 🐍
Stars: ✭ 16 (-48.39%)
Mutual labels:  cli-app
simplematch
Minimal, super readable string pattern matching for python.
Stars: ✭ 147 (+374.19%)
Mutual labels:  string-matching
bsdiff
Binary delta tools and library
Stars: ✭ 29 (-6.45%)
Mutual labels:  suffix-array
vmo
Python Modules of Variable Markov Oracle
Stars: ✭ 23 (-25.81%)
Mutual labels:  string-matching
psh
PSH - PHP shell helper
Stars: ✭ 60 (+93.55%)
Mutual labels:  cli-app
toml-bombadil
A dotfile manager with templating
Stars: ✭ 127 (+309.68%)
Mutual labels:  cli-app
spaceholder
🌅 Download placeholder images from public domain sources blazingly fast
Stars: ✭ 24 (-22.58%)
Mutual labels:  cli-app
javascript-cli
A CLI in JavaScript for the ARK Blockchain.
Stars: ✭ 48 (+54.84%)
Mutual labels:  cli-app
MinifyAllCli
📦 A lightweight, simple and easy npm tool to 𝗺𝗶𝗻𝗶𝗳𝘆 JSON/C, HTML and CSS! Also known as MinifyAll core! ⭐ Usable as 𝑪𝑳𝑰 tool or 𝒊𝒎𝒑𝒐𝒓𝒕𝒂𝒃𝒍𝒆 in TS/JS as a 𝑴𝑶𝑫𝑼𝑳𝑬 🥰
Stars: ✭ 21 (-32.26%)
Mutual labels:  cli-app

Using the FuzzyMatch-cli

FuzzyMatch-cli is a commandline utility allowing to compile FuzzyMatch indexes and use them to lookup fuzzy matches.

Compiling a Fuzzy match index

Simplest command is the following:

FuzzyMatch-cli -c CORPUS [--penalty-tokens (none|tag,sep/jnr,pct,cas,nbr)] [--max-tokens-in-pattern N]
  • CORPUS can be a single file - in which case, the index of each segment is simply the sentence id - or you can provide a target file using -c CORPUSSOURCE,CORPUSTARGET and add option --add-target to include in the index the actual target sentence (format ID=target). This is useful for having the index fully containing the translation memory. Not useful, if the translation memory is saved in side database.
  • --penalty-tokens (default tag,cas,nbr) is either none or comma-separated list of tag, sep, jnr, pct, nbr, cas modifying normalization (for cas performing case normalization, and nbr triggering number normalization), removing some tokens from index (tag for tags, and pct for punctuations), or generates spacer/joiner (sep/jnr). In each case, a penalty tokens is added.
  • --max-tokens-in-pattern (default: 300) limits how long the pattern can be. This is necessary to prevent poor match performance, because the edit distance computation runs in O(T^2) where T is the number of tokens in the pattern.

This option used in index forces the same logic in matching.

The above command generates a file CORPUS.fmi.

Fuzzy Lookup

FuzzyMatch-cli -i CORPUS.fmi -a match -f FUZZY -N NTHREAD -n NMATCH [--ml ML] [--mr MR] --idf-penalty IDFPENALTYRATIO < INPUTFILE > MATCHES 
  • CORPUS.fmi path to the complete generated index file
  • FUZZY, the fuzzy threshold in [0,1]. Not really relevant < 0.5.
  • NTHREAD number of thread to use - default 4. Scales well with the number of threads.
  • NMATCH number of match to return
  • ML minimal length of the longest subsequence (in tokens) - defaut 3. If the pattern size is strictly less than ML, then this parameter is ignored.
  • MR minimal ratio of the longest subsequence (in tokens) - default 0. Interesting to use for lowest fuzzy - for instance a value of 0.5, used with fuzzy threshold 0.5, will guarantee the presence of at least 50% of the sentence length
  • IDFPENALTYRATIO if not null, gives extra penalty to word missing weighted on IDF: a value of 1 is equivalent to give a penalty of one additional missing word for a word appearing only once in all the translation memory.

Add --no-perfect (-P) to discard perfect matches. For instance the following command returns one fuzzy match higher than 0.7 but not perfect:

FuzzyMatch-cli -l en -i CORPUS.fmi -a match -f 0.7 -N 4 -n 1 -P < INPUTFILE

The Algorithm

Tokenization and Vocabulary Indexing

All the sentences stored in the Fuzzy Match index are considered as sequences of index - where the index is coming from a vocabulary list as defined in VocabIndexer.

It is therefore important to tokenize and normalize the sentences stored. Default integrated tokenization is OpenNMT tokenization:

onmt::Tokenizer tokenizer(onmt::Tokenizer::Mode::Aggressive,
                          onmt::Tokenizer::Flags::CaseFeature
                          | onmt::Tokenizer::Flags::SegmentAlphabetChange
                          | onmt::Tokenizer::Flags::NoSubstitution
                          | onmt::Tokenizer::Flags::SupportPriorJoiners,
                          "",
                          "");
tokenizer.add_alphabet_to_segment("Han");
tokenizer.add_alphabet_to_segment("Kanbun");
tokenizer.add_alphabet_to_segment("Katakana");
tokenizer.add_alphabet_to_segment("Hiragana");

Also - the tokens are normalized:

  • NFC encoding
  • lowercase (if cas penalty-token is activated)
  • ID and values of placeholders are removed, and all it_... placeholders normalized by ⦅it⦆. These placeholders are removed from index if tag penalty-token is activated
  • numbers replaced by ⦅ent_num⦆ (if nbr penalty-token is activated)
  • punctuations are removed from index if pct penalty-token is activated

It is possible to pre-tokenize and pre-normalize with other algorithms for possible special processing.

The actual tokenization is not important but needs to be consistent for indexation and lookup.

Also, the more generous is the "normalization", the better the fuzzy matcher will be able to match variants of the same sentence.

Fuzzy matching is performed on normalized forms, but final score is calculated on real forms with potential penalties.

Suffix Arrays and Fuzzy Matching

The base structure used for fuzzy matching index is a suffix array. This structure is implemented in suffix-array.hhand works as following: each sentence can be seen as a sequence of suffix. For instance the sentence A B C A D is containing suffixes A B C A D, B C A D, C A D, A D and D. In a suffix array the suffix are sorted by lexicographical order and suffixes are simply indicated as their position in the sentence.

The suffix array corresponding to the sentences 0: A B C A D and 1: D A B A is:

Suffix ID SentenceID,Position Equivalent Suffix
0 1,3 A
1 1,1 A B A
2 0,0 A B C A D
3 0,3 A D
4 1,2 B A
5 0,1 B C A D
6 0,2 C A D
7 0,4 D
8 1,0 D A B A

What needs to be saved is only pair of (sentence id, position), and the actual sentences. This is implemented in SuffixArray class through:

struct SuffixView
{
  unsigned sentence_id;
  unsigned short subsentence_pos;
};

...

// ordered sequence of sentence id, pos in sentence
std::vector<SuffixView>       _suffixes;
// the concatenated sentences, as 0-terminated sequences of vocab
std::vector<unsigned>         _sentence_buffer;
// sentence id > position in sentence buffer
std::vector<unsigned>         _sentence_pos;
/* index first word in _sentences */
std::vector<unsigned>         _quickVocabAccess;

Suffix arrays have the nice property of instantly locating sub-matches from a pattern. For instance when searching common ngrams with the pattern A B A D - we can simply iterate at each position of the pattern and perform narrowing lookup in the suffix array:

1st position:

  • A finds the matching range [0, 3] in the suffix array
  • A B we can narrow previous range, and find new range [1, 2]
  • A B A - 0 result

2nd position:

  • B => range [4, 5]
  • B A => range [4, 4]
  • B A D - 0 result

3nd position:

  • A => range [0, 3]
  • A D => range [3, 3]

4th position:

  • D => range [7, 8]

The algorithm implemented in fuzzy-match.cc is disregarding the unigram to avoid matching all single sentences - but then build NGramMatch for each sentence by checking longest match - in the previous case, we are keeping:

Sentence 1: A B, A D Sentence 2: A B A

These occurrences might overlap, so a second step in the process is building a pattern_map matching all tokens covered by the ngrams while completing with unigrams.

During the match process, we can restrict the candidate sentences by looking at their length. Indeed a 70% fuzzy on a 100 tokens match can not match sentence shorter than 70 tokens or longer than 130 tokens.

Last phase of the fuzzy match is to actually perform a standard edit distance between the unnormalized tokens to obtain actual fuzzy match.

Following rules apply to calculate the actual fuzzy match when looking for a specific pattern:

  • penalty token as defined when building index ⦅it⦆, punctuations are not taken into account in the real pattern length: hence aa ⦅it⦆ bb cc dd length is 4 tokens. Separators are never taken into account.
  • modification, insertion, and substitution costs in edit distance are 100/real_pattern_length.
  • cost of penalty tokens is cost_penalty=1
  • cost of case difference is cost_diff_case=1
  • cost of any other difference in real forms is cost_diff_real=2 (for instance number)

Note on Penalties

Fuzzy-Matching score is not formally defined - and the above-mentionned rules are a reasonnable choice that can be however different than for another implementation:

Suffix Arrays efficiency

Searching for a n-gram in a collection of N sentences, with average length m, is only costing O(log(Nm)) since the suffix array is sorted. So the approximate number of operations required to find for all of the n-gram in a sentence of sentence m is only O(m.log(Nm)).

Note that this very nice property of the Suffix Array representation is balanced by an important cost when computing the Suffix Array. Adding a single sentence needs to insert suffixes position inside the array. Today the structure SuffixArray is not dynamic: it is necessary to sort completely the suffix array every time a new sentence is added, and it is not possible to remove a sentence from the index. This could be changed, and we could dynamically insert suffixes where they belong, and also remove a given sentence by searching for all its suffixes. However cost to add or remove a sentence is O(N).

Serialization/Deserialization of Fuzzy Match Index

Serialization and Deserialization of Fuzzy Match Index classes in file is performed using functions in include/fuzzy/fuzzy_matcher_binarization.hh:

  void export_binarized_fuzzy_matcher(const std::string& binarized_tm_filename, const FuzzyMatch& fuzzy_matcher);
  void import_binarized_fuzzy_matcher(const std::string& binarized_tm_filename, FuzzyMatch& fuzzy_matcher);

These functions are saving/loading fuzzy_matcher instance into the indicated file - adding a signature to the file corresponding to FMIv where v is the version of the class:

  const char FuzzyMatch::version = '1';

Note that the version of the class is necessary for checking version compatibility. The serialization format may also change - and in that case is indicated with BOOST_CLASS_VERSION macro in fuzzy_match.hxx.

Development

Dependencies

Compiling

CMake and a compiler that supports the C++11 standard are required to compile the project.

mkdir build
cd build
cmake ..
make

Custom library locations can be provided with the following cmake variables:

  • OPENNMT_TOKENIZER_ROOT for OpenNMT_Tokenize path.
  • CMAKE_PREFIX_PATH for ICU path, prefer this over ICU_ROOT as it will properly use your path over system paths.
  • BOOST_ROOT for Boost path.
  • GTEST_ROOT for Google Test path.

By default you compile the library + CLI (Command Line Interface) + tests.

  • To compile only the CLI (without the tests), use the -DCLI_ONLY=ON flag.
  • To compile only the library (without the tests, without the CLI), use the -DLIB_ONLY=ON flag.

Testing

Compile test indexes

./cli/src/FuzzyMatch-cli -c ../test/data/tm1,../test/data/tm1 --add-target 1
./cli/src/FuzzyMatch-cli -c ../test/data/tm1,../test/data/tm1 --add-target 1
./cli/src/FuzzyMatch-cli -c ../test/data/tm2.en.gz,../test/data/tm2.fr.gz --add-target

Run tests:

./test/FuzzyMatch-test ../test/data/

Rebuild reference (expected) tm2 test set (!!! be careful, you are changing reference !!!):

cat ../test/data/test-tm2.en | ./cli/src/FuzzyMatch-cli -i ../test/data/tm2.en.gz.fmi -f 0.5 -a match --no-perfect -n 2 > test-tm2.matches
paste ../test/data/test-tm2.en test-tm2.matches | perl -pe 's/\t/\t0.5\ttrue\t2\t/;s/^/TEST.($c++)."\t"/e' > ../test/data/test-tm2
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].