Skip to content Skip to sidebar Skip to footer
Showing posts with the label Levenshtein Distance

Sqlite With Real "full Text Search" And Spelling Mistakes (fts+spellfix Together)

Let's say we have 1 million of rows like this: import sqlite3 db = sqlite3.connect(':memory… Read more Sqlite With Real "full Text Search" And Spelling Mistakes (fts+spellfix Together)

Python, Nested Loops, Matching And Performance

I am trying to match a list of lastnames to a list of full names using Python 2.7 and the Levenshte… Read more Python, Nested Loops, Matching And Performance

How Can I Compare Different Rows Of One Column With Levenshtein Distance Metric In Pandas?

I have a table like this: id name 1 gfh 2 bob 3 boby 4 hgf etc. I am wondering how can I use Leven… Read more How Can I Compare Different Rows Of One Column With Levenshtein Distance Metric In Pandas?