Giter Club home page Giter Club logo

Comments (3)

jsvine avatar jsvine commented on May 21, 2024

Good question! There's not a hard-coded limit, but you'll definitely run into problems with large state limits. Small-ish corpora won't have many sequences that share state_size - 1 consecutive items — e.g., it's much easier to find a subsequent item for John ate than for John ate a bagel with.

Some convenience methods, e.g. markovify.Text.make_sentence(...), handle this issue by specifying a maximum number of times to try creating a new chain. That said, it's definitely possible that there's some hidden bug causing problems.

Do you have example code/data to reproduce the problem?

from markovify.

mfalade avatar mfalade commented on May 21, 2024

Here is the block of code.

file_path = 'resources/the-elves.txt'
with open(file_path) as f:
        file_content = f.read()
model = markovify.Text(file_content, state_size=6)
return ' '.join([model.make_short_sentence(150) for i in range(5)])

This runs fine with a state size of 5 or less. From your explanation above, I understand why a large state size can be an issue.

from markovify.

jsvine avatar jsvine commented on May 21, 2024

Thanks! Do you have a link to the "resources/the-elves.txt" file? If so, I can try to figure out what's causing this particular problem. (If there's no link, you can also email me the file: [email protected].)

from markovify.

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.