Are there any open source libraries for mass article creation, like GSA Content Generator?

Daemon

Regular Member
Joined
Dec 31, 2009
Messages
209
Reaction score
79
I was wondering if there were any open source libraries that can mass generate articles, similar to GSA Content Generator.

It doesn't have to have as many features or be as fancy. Also I can handle the scraping of content myself.

I think I'm looking for something that can take in scraped content and output mass articles, without requiring the use of machine learning. Just regular PHP/Python.

Is there any sort of open source library like this? And does anyone know what algorithm/package something like GSA Content Generator uses on the backend?

For instance at 16:20 of this video that demonstrates GSA, there's a column that says "Algorithm" and it says "MixSentence". I don't know what this is referring to exactly.
 
I was wondering if there were any open source libraries that can mass generate articles, similar to GSA Content Generator.

It doesn't have to have as many features or be as fancy. Also I can handle the scraping of content myself.

I think I'm looking for something that can take in scraped content and output mass articles, without requiring the use of machine learning. Just regular PHP/Python.

I suppose what you're looking for would depend on how spammy you want the mass articles generated from your scraped content. For example, for many years people have gotten away with just using markov chains: https://github.com/jsvine/markovify

Is there any sort of open source library like this? And does anyone know what algorithm/package something like GSA Content Generator uses on the backend?

For instance at 16:20 of this video that demonstrates GSA, there's a column that says "Algorithm" and it says "MixSentence". I don't know what this is referring to exactly.

I suspect 'MixSentence' just means that the articles are split into sentences (using .|!|? as a terminator probably) and then jumbled up into new articles. Should be pretty easy in PHP/Python
 
Back
Top