Fuzzy String Matching in Python

Sdílet
Vložit
  • čas přidán 13. 09. 2024

Komentáře • 33

  • @daveys
    @daveys Před rokem +3

    Brilliant tutorial! Really enjoyed working along in Jupyter notebook too. I’ve been needing to do a lot of fuzzy searching recently so this was a great demo of how the process works.

  • @HypnosisBear
    @HypnosisBear Před 2 lety +3

    I've fallen in love with your channel name and logo! Man they are just perfect 👌👌

    • @obed818
      @obed818 Před 2 lety

      Imo just need to change the intro music iwd say

  • @divinecaster
    @divinecaster Před 2 lety +1

    I was actually looking for something like this, thanks

  • @Stewardwht
    @Stewardwht Před 2 lety +2

    This is very useful stuff, keep up the good work. Appreciate you

  • @conevca
    @conevca Před rokem +3

    It would seem that the partial_ratio deinition changed - fuzz.partial_ratio('Hello World', 'Hello Hello World World World') now returns 100, and not 64 like in the video.

  • @webslinger2011
    @webslinger2011 Před 2 lety +1

    This will very useful. Thanks!

  • @ericm8502
    @ericm8502 Před 2 lety +2

    These videos are awesome, great job!

  • @swedishguyonyoutube4684
    @swedishguyonyoutube4684 Před rokem +1

    Radical tutorial, bro!

  • @user-fh6kh5ke9h
    @user-fh6kh5ke9h Před 6 měsíci

    As other has said, a great tutorial. Thank you!

  • @ccc_ccc789
    @ccc_ccc789 Před 4 měsíci

    Thanks! This is really helpful for my work!

  • @0Bariq0
    @0Bariq0 Před 6 měsíci

    so basically the last matching method is the best one hahaha thanks for the tutorial

  • @Maikiejjj
    @Maikiejjj Před rokem +6

    Awesome tutorial, how would you do this if you have a few hundred/thousands of strings in json and want to compare duplicates with slightly different names?

  • @david-komi8
    @david-komi8 Před 2 lety +2

    Interesting library to work. Maybe I could use it. Thank you 👍

  • @SMITDEDHIA96
    @SMITDEDHIA96 Před 8 měsíci

    Super helpful. Thank you for this video!

  • @amaansiddiqui2376
    @amaansiddiqui2376 Před 2 lety +1

    my mans uploading so quick, damn

  • @DxYPINS
    @DxYPINS Před 2 lety +1

    I'm waiting for ur vids bro keep going

  • @prakhar16
    @prakhar16 Před 20 dny

    Very helpful

  • @malvibid
    @malvibid Před 7 měsíci

    This is so cool! 🤯

  • @ankurmathur82
    @ankurmathur82 Před 4 měsíci

    @NeuralNine , crisp & rich tutorial at the same time. Amazing .Thank you for this. In last extract example , how do I make sure I have extractions done only when all the 3 words are found. in your example that would mean all the three words/tokens 'science' 'data' & 'python' must be present. So in other words I do not want to match if anyone of the word is missing . [Hence 'Some Other DataScience ... ] should not come up in result.

  • @x13set
    @x13set Před 2 lety +3

    Very nice Bro, this library is very impressive. I have a program that looks for a match of a specific text in another text and with this library it will help me to be more accurate.

  • @jacobli2676
    @jacobli2676 Před 2 lety

    Thanks for sharing, good job!

  • @samueltks9196
    @samueltks9196 Před 5 měsíci

    Hi this is so useful and precise! I would like to know if we could add a "score_cutoff" to the "process.extract"?

  • @brentsimpson3791
    @brentsimpson3791 Před 2 lety

    Thank you, very useful information.

  • @thecomputerpal221
    @thecomputerpal221 Před 2 lety

    Awesome video. Thank you

  • @stanTrX
    @stanTrX Před 3 měsíci

    Good. How to implement this two match two tables?

  • @virusalisatishkumar281

    Thanks for sharing

  • @zuowang5185
    @zuowang5185 Před 10 dny

    is it performant on large strings?

  • @dieerdnuss1374
    @dieerdnuss1374 Před 2 lety

    I've build combinations of two strings in a list with itertools a = combinations(lines, 2). How can I compare these pairs of 2 strings with fuzzywuzzy?

  • @thepresistence5935
    @thepresistence5935 Před rokem

    What keyboard are you using ?

  • @richagoenka7030
    @richagoenka7030 Před rokem

    why does fuzz.partial_ratio(paypal, trustpad-pancakeswap) gives result as 67??please help..

  • @beeink5395
    @beeink5395 Před rokem

    Try get_close_matches in python difflib.😊