Python rewriter / paraphraser?

spectrejoe

Elite Member
Jr. VIP
Joined
Sep 25, 2013
Messages
4,705
Reaction score
2,701
Has anyone found one that does a good job at rewriting/paraphrasing while keeping things readable?

Im currently using parrot paraphraser it works well but paraphrasing each sentence ends up with it not being very readable/fluent.

Sometimes its perfect othertimes the result is clearly paraphrased.
 
spinrewriter looks interesting. actually uses ai (apparently). was looking for this also one day, i remember this one cause it quotes ENL (Emulated Natural Language) which is the first time I have seen that.
note, i have not used it... i may look into it soon for future projects tho. also following responses to this thread.
 
Try fine tuning GPT-3. I've seen pretty good results with this, and no extreme compute power on your end
 
Try fine tuning GPT-3. I've seen pretty good results with this, and no extreme compute power on your end
Do you happen to have some code examples to get gpt-3 running? I tried with few different models of gtp-3 and with every setup i tried i ran out of memory and code crashed. Is some gpt-3 model possible to run with 16gb of ram? Last time i checked for minimum requirements it had like 40+gb of ram of some beefy gpu to do the work.
 
Do you happen to have some code examples to get gpt-3 running? I tried with few different models of gtp-3 and with every setup i tried i ran out of memory and code crashed. Is some gpt-3 model possible to run with 16gb of ram? Last time i checked for minimum requirements it had like 40+gb of ram of some beefy gpu to do the work.
I'm thinking of the OpenAI API - it doesn't even run on your computer then and you can access it in a 10 line python script.
 
Back
Top