[HELP] Algorithm for automatic text generation?

Piko

Registered Member
Joined
Apr 12, 2018
Messages
76
Reaction score
43
Hi there!
Despite I am experienced programmer, I am quite new in automatic text generation.
Does anyone know an algorithm (or Python code) to get human readable text, assuming I have several articles as input.
I need generated text to pass plagiarism check.
The good thing is all my articles are informational ones. No specific data or specific instructions.
 
"Algorithm" probably isn't the right word to be using here. NLP, or "Natural Language Processing", is what you'll want to start researching. NLP will almost always leverage machine learning to produce results.

Fortunately for you, there are several solid open-source NLP libraries available for Python. A Google search for "nlp python library" should put you on the right track. Good luck!
 
gpt-neo is the latest, but you need a decent NVIDIA GPU to do blog post size output, its very slow on CPU.
Or train your own gpt-2.. faster but not as accurate.
 
Get yourself beta access to gpt-3 and if you want something unlimited download gpt-2, it's free but less accurate.
 
Thank you all guys!
I did not know what did I miss.
 
Back
Top