[Journey] 1 million UVs/month in 12 months using AI generated content. Let's do it!

Status
Not open for further replies.
Good luck man.

Your tool is pretty decent from what you showed, looking promising!
 
How many articles have you done so far, as in published?
I only published 3 articles on my hobby website, the automated websites will be up when I finish all the features. Don't want to post the articles until they're polished. Probably will take me a week or two to finish this.
 
Very Awesome journey, Thank you for the information you're sharing here, it will be fun to follow it, till the end.
My questions :

1- What Python Libraries you used to build the script?

2- Any guide or schema for creating a similar tool? (because I have some basics in python and don't know where to start from)
 
Very Awesome journey, Thank you for the information you're sharing here, it will be fun to follow it, till the end.
My questions :

1- What Python Libraries you used to build the script?

2- Any guide or schema for creating a similar tool? (because I have some basics in python and don't know where to start from)
  1. Selenium and Helium if I need to automate a browser
  2. Nider for writing on images
  3. Pillow for image manipulation
  4. sentence_transformers, torch for ML
  5. spacy for NLP
  6. python-unsplash
  7. For uploading to WP REST API I'm just using requests/json/base64

Python 3.6 works the best with these, above there's gonna be dependency hell.

Just divide the project into small steps. For example:
  1. Take a keyword.
  2. Scrape top 10 results from Google
  3. Get something from these sites. Combine into an article. I used to extract contents using Newspaper.
  4. Paraphrase. Start with this: https://huggingface.co/tuner007/pegasus_paraphrase
I will set up a simple script for you guys later this week so you got some place to start.
 
There are some free GPT3 alternatives (https://nlpcloud.io/gpt-3-open-source-alternatives-gpt-j-gpt-neo.html). Can these be used to create new content instead of just scrapping old content. I think combining bits and pieces of content from multiple places will make it loose the contextual flow and will make it look more spammy even if it is unique. I think AI can do much better if it understands the trillions of content training data and churns out something meaningful and maybe something new and creative.
 
There are some free GPT3 alternatives (https://nlpcloud.io/gpt-3-open-source-alternatives-gpt-j-gpt-neo.html). Can these be used to create new content instead of just scrapping old content. I think combining bits and pieces of content from multiple places will make it loose the contextual flow and will make it look more spammy even if it is unique. I think AI can do much better if it understands the trillions of content training data and churns out something meaningful and maybe something new and creative.
I experimented with this and even GPT3 produces worse results than my non-abstract methods. The difficult element is identifying which parts of articles you need to extract.
 
damn, hope to hear more. can consider this to post as video on youtube
 
i know someone get content from Q&A sites like stackoverflow, then translate to another language, and it works great, don't know how long it will last, but currently it works fine.
 
Congratulations on your journey, very interesting to combine blackhat techniques with artificial intelligence. As you pointed out, I believe that the real challenge is to be able to extrapolate the interesting parts of an article in order not to lose the logical thread and not have too many repetitions.
 
  1. Selenium and Helium if I need to automate a browser
  2. Nider for writing on images
  3. Pillow for image manipulation
  4. sentence_transformers, torch for ML
  5. spacy for NLP
  6. python-unsplash
  7. For uploading to WP REST API I'm just using requests/json/base64

Python 3.6 works the best with these, above there's gonna be dependency hell.

Just divide the project into small steps. For example:
  1. Take a keyword.
  2. Scrape top 10 results from Google
  3. Get something from these sites. Combine into an article. I used to extract contents using Newspaper.
  4. Paraphrase. Start with this: https://huggingface.co/tuner007/pegasus_paraphrase
I will set up a simple script for you guys later this week so you got some place to start.


Thank you so much for this well-organized guide and fast reply, I very much appreciate it.

it is a great idea to set up a simple script for the community, Thank you again.
 
Such a nice post. A lot to learn from this thread.
 
  1. Selenium and Helium if I need to automate a browser
  2. Nider for writing on images
  3. Pillow for image manipulation
  4. sentence_transformers, torch for ML
  5. spacy for NLP
  6. python-unsplash
  7. For uploading to WP REST API I'm just using requests/json/base64

Python 3.6 works the best with these, above there's gonna be dependency hell.

Just divide the project into small steps. For example:
  1. Take a keyword.
  2. Scrape top 10 results from Google
  3. Get something from these sites. Combine into an article. I used to extract contents using Newspaper.
  4. Paraphrase. Start with this: https://huggingface.co/tuner007/pegasus_paraphrase
I will set up a simple script for you guys later this week so you got some place to start.
What does ML stands for?
 
If I was you, I would get rid of Wordpress cause it does nothing here.
My WordPress sites aren't like most WordPress sites. I'm using headless with REST API, ACF, custom posts, pages load like static sites because they are fully cached at all times. I'm using it for the plugin ecosystem. It speeds up the process of replicating sites for me. Unless I'd be looking into making hundreds of sites which isn't necessary.
 
Cool journey, any tips on knowing which parts of articles to use. So it keeps being a coherent article?
 
Yet another interesting journey
Have you considered using GPT-3 based tools like jarvis for your hobby site?

Good luck!
 
Cool journey, any tips on knowing which parts of articles to use. So it keeps being a coherent article?
Think outside of the box. What kind of article are you writing? What kind of article would be easy to construct this way without repetitions? An easy example is a list of items. But there are several other types you can do. There's a lot of stuff you can look at: meta-descriptions, headings, latent semantic keywords...
Yet another interesting journey
Have you considered using GPT-3 based tools like jarvis for your hobby site?

Good luck!
My solution is much faster and more accurate. I tried several GPT-3 tools. I also got access to the GPT-3 API itself a year ago.

With a few years from an AI understanding the intent and fathering the facts to create a coherent article. It's much easier to work on sentences in a non-abstract way - NLP - understand the grammar and paraphrase, mix and move things around.
 
Last edited:
Status
Not open for further replies.
Back
Top