Skip to content

issues Search Results · repo:luozhouyang/python-string-similarity language:Python

Filter by

21 results
 (74 ms)

21 results

inluozhouyang/python-string-similarity (press backspace or delete to remove)

Hi there, I m just getting started with string similarity processing. In my application, I need to compare short-ish strings of length 25-300 characters, and I need the distance between any two metric ...
  • davidmcnabnz
  • Opened 
    on Nov 19, 2022
  • #35

There are other algorithms that are available in TextDistance that may be considered. Edit based - MLIPNS http://www.sial.iias.spb.su/files/386-386-1-PB.pdf - Strcmp95 http://cpansearch.perl.org/src/SCW/Text-JaroWinkler-0.1/strcmp95.c ...
  • BradKML
  • 2
  • Opened 
    on Nov 3, 2021
  • #31

NGram distance returns wrong value for strings shorter than N. from strsimpy.ngram import NGram ng = NGram() ng.distance( abc , abc ) == 0.0 ng.distance( a , b ) == 0.0 # should be 1.0 Distance between ...
  • adamko147
  • 2
  • Opened 
    on Sep 10, 2021
  • #28

`from strsimpy.cosine import Cosine def test_cosine4_passes_1(): s0 = 0xxs s1 = foo bar c_4 = Cosine(4) c_4.similarity(s0, s1) def test_cosine4_fails_1(): s0 = s1 = foo bar c_4 = Cosine(4) c_4.similarity(s0, ...
  • dave31415
  • 1
  • Opened 
    on Mar 26, 2021
  • #26

Python3.x implementation of tdebatty/java-string-similarity I believe you meant to say Java library
  • buddha-mnky
  • Opened 
    on Dec 22, 2020
  • #25

JaroWinkler is slower than jellyfish s implementation. Also, the results are different. %%timeit a = book egwrhgr rherh b = fvdaabavvvvvadvdvavavadfsfsdafvvav book teee import jellyfish jellyfish.jaro_winkler(a,b) ...
  • reza1615
  • 4
  • Opened 
    on Sep 19, 2020
  • #22

Thank you for your great package I compared this package speed with other cpython pakages and it is slower. is it possible to improve the speed? a = fsffvfdsbbdfvvdavavavavavava b = fvdaabavvvvvadvdvavavadfsfsdafvvav ...
  • reza1615
  • 2
  • Opened 
    on Sep 19, 2020
  • #21
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Restrict your search to the title by using the in:title qualifier.
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Press the
/
key to activate the search input again and adjust your query.
Issue search results · GitHub