-
When searching for jquery or any other library for that matter, backbone is another example, you get a long list of plugins before you actually find jquery.js
So I thought - maybe it would be smart to…
-
Some common additional string comparison methods may be useful to implement, e.g.
- [Bag of words](http://en.wikipedia.org/wiki/Bag-of-words_model)
- [Damerau-Levenshtein](http://itssmee.wordpress.com…
cneud updated
11 years ago
-
Una discusión planteada originalmente en https://github.com/mgaitan/preciosa/issues/18#issuecomment-35226119
El problema no se circunscribe a COTO Digital y es el siguiente:
- Tenemos una base de …
-
Hi,
I just ran into a type error, when using python3.3.
`TypeError: expected bytes, str found`
I had to fix this by calling the function with encoded strings:
``` python
print(normalized_damerau_le…
-
My following implementation which must be called like `_calculate(target, source)` even though the signature was copied from your Java code, produces results incremented by 1 compared to, say [this](h…
-
Hello,
I am attempting to install a module that is dependent upon jellyfish, but I can't seem to get jellyfish to install. I have tried to install using pip and from source. I get the same error eve…
-
Current implementation will return first match in lexical priority that is < 3 Damerau-Levenshtein distance from typo... can we find closest match within that range, rather than just first?
-
only one m, cumulative
also can't edit priority, should be trivial
-
```
irb(main):001:0> require 'damerau-levenshtein'
=> true
irb(main):002:0> DamerauLevenshtein.distance('abc', '-')
=> 0
```
Muon updated
12 years ago
-
```
irb(main):018:0> DamerauLevenshtein.distance('a', 'ab')
=> 0
irb(main):019:0> DamerauLevenshtein.distance('a', 'a')
=> 0
irb(main):020:0> DamerauLevenshtein.distance('a', 'bc')
=> 0
irb(main):021:…
Muon updated
12 years ago