Giter VIP home page Giter VIP logo

Comments (3)

rominf avatar rominf commented on May 29, 2024
  1. I fixed the formatting for you. Please, learn a Git Flavored Markdown. Unformatted code is hard to read.
  2. You are doing this wrong: censor_word is designed to censor words, but you are giving this function a phrase. The function will not work as expected if you are using it wrong.
  3. You've discovered an actual bug: I had to call str.lower in function, that extracts lemmas. I already fixed this. Please, try the latest version from PyPI.

Here is how it works now:

In [1]: from profanity_filter import ProfanityFilter

In [2]: pf = ProfanityFilter(censor_whole_words=False)

In [3]: pf.censor("FUKUHARA")
Detector is not able to detect the language reliably.
Out[3]: '******RA'

In [4]: pf.censor_word('FUKUHARA')
Out[4]: Word(uncensored='FUKUHARA', censored='******RA', original_profane_word='fukka')

In [5]: # Adding "FUKUHARA" to the dictionary to not censor it

In [6]: pf.spells['en'].add('FUKUHARA')
Out[6]: 0

In [7]: pf.clear_cache()  # Required, because `pf` remembers that 'FUKUHARA' is profane word

In [8]: pf.censor_word('FUKUHARA')
Out[8]: Word(uncensored='FUKUHARA', censored='FUKUHARA', original_profane_word=None)

Are you satisfied?

from profanity-filter.

nataliGitHub avatar nataliGitHub commented on May 29, 2024

Yes, very much so. Thank you.

from profanity-filter.

rominf avatar rominf commented on May 29, 2024

@nataliGitHub, please also see https://github.com/rominf/profanity-filter#using-as-a-part-of-spacy-pipeline

from profanity-filter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.