Code Monkey home page Code Monkey logo

Comments (3)

tomaarsen avatar tomaarsen commented on July 19, 2024

Hello!
I don't maintain this work much anymore, so I'm not sure it even still works well. That said, this else branch is responsible for learning:

What you could do is e.g.

                ...
                # Ignore the message if any word in the sentence is on the ban filter
                if self.check_filter(m.message):
                    logger.warning(f"Sentence contained blacklisted word or phrase:\"{m.message}\"")
                    return

+               elif m.user == "multiplegamer9":
                    # Try to split up sentences. Requires nltk's 'punkt' resource
                    try:
                        sentences = sent_tokenize(m.message.strip())
                    # If 'punkt' is not downloaded, then download it, and retry
                    except LookupError:
                        ...

Then it should only trigger the learning for the user that's called "multiplegamer9".

A personal recommendation is then to also update this:

# Commit these executes if there are more than 25 queries
if auto_commit and len(self._execute_queue) > 25:
self.execute_commit()

From 25 to e.g. 5. You tend to get a little less than 1 query per word that is written in chat. Normally these are batched to only "learn" in bulk once every 25 queries, but if you only have one user, then it might take a while. So, I'd recommend lowering it a bit.

Hope this helps :)

  • Tom Aarsen

from twitchmarkovchain.

multiplegamer9 avatar multiplegamer9 commented on July 19, 2024

thank you very much for the help and quick response! it does still work very well, only thing thats broken is the /mods command due to IRC command deprecation.

from twitchmarkovchain.

tomaarsen avatar tomaarsen commented on July 19, 2024

Oh, I'm glad that it's not too beat up! I read about the IRC deprecation. I think whispering cooldowns might also be broken because of it? I'm not too bothered as long as the rest works.

from twitchmarkovchain.

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.