I have a page spider that goes out and returns me articles that it finds on other web pages written in python.
Right now I have two different algos to spin the articles, one uses a translation service from Google, and the other uses NLTK.
1) the first algo tolkenizes the sentences and re-orders them, next I replace adjectives and adverbs with synonyms using NLTK.
2) this algorithm translates an article to another language and then translates it back to english.
What is the best way to spin articles using Python?
Additionally if I were to publish like 100,000 unique articles per day how do you think this would do for page views?
Best,
Right now I have two different algos to spin the articles, one uses a translation service from Google, and the other uses NLTK.
1) the first algo tolkenizes the sentences and re-orders them, next I replace adjectives and adverbs with synonyms using NLTK.
2) this algorithm translates an article to another language and then translates it back to english.
What is the best way to spin articles using Python?
Additionally if I were to publish like 100,000 unique articles per day how do you think this would do for page views?
Best,