Giter Club home page Giter Club logo

Comments (5)

seuaCoder avatar seuaCoder commented on May 21, 2024

My source text contain 30 000 words. What would be the settings to generate unique sentences from this source ?

from markovify.

seuaCoder avatar seuaCoder commented on May 21, 2024

I adjusted state_size=1 and i have no more duplicate. How does the state size influence the results ?

from markovify.

jsvine avatar jsvine commented on May 21, 2024

To debug this issue, it would be helpful if you could provide a reproducible example — the corpus and a script that demonstrates the problem. If there's not a bug in the markovify code, one possibility is that there's something unusual in the way the corpus is formatted. But that's just a guess; hard to say for sure without seeing it.

from markovify.

jsvine avatar jsvine commented on May 21, 2024

Hi @seuaCoder. When I run the code below, I do not detect the problem with reproducing original text.

#!/usr/bin/env python

import markovify

corpus = open("pastebin.txt").read() # This is the file you linked to above
text_model = markovify.Text(corpus)

for i in range(1000):
    sent = text_model.make_sentence(max_overlap_ratio=0.3, tries=1000)
    if sent is not None and sent in corpus:
        print(sent)

It’s possible that some of what you’re seeing looks like text from the original, but is actually slightly different. In that case, I’d recommend writing your own filter for what “counts” as too close to the original. Closing this issue for now. If you’re able to provide a script that demonstrates the problem more explicitly, feel free to reopen.

from markovify.

seuaCoder avatar seuaCoder commented on May 21, 2024

Hi @jsvine,

I did a test with exactly the same code as above (yours) and the same corpus. I'm still finding some sequences of 3, 4 (or more) words which match exactly some sequences in the corpus. I now believe that this is normal. Howeven with state_size=1 there are no duplicated sequences of words.

Could you please tell me how state_size can influence the final results ? Why i don''t have duplicate with state_size=1 but i have many with state_size=2 ?

Thank you !

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.