├── .gitignore ├── README.md ├── ai_articles ├── PostGeneration.ipynb ├── app.py ├── data.py ├── data │ ├── posts.csv │ └── posts.txt ├── medium-copycat │ ├── index.html │ └── style.css ├── run_language_modeling.py └── scripts │ └── download_data.py ├── media ├── streamlit.gif └── streamlit.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/* 2 | .DS_Store 3 | venv/ 4 | .idea/ 5 | runs/ 6 | output/ 7 | 8 | **/cached_* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SachaIZADI/AI-generated-blog-posts/HEAD/README.md -------------------------------------------------------------------------------- /ai_articles/PostGeneration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SachaIZADI/AI-generated-blog-posts/HEAD/ai_articles/PostGeneration.ipynb -------------------------------------------------------------------------------- /ai_articles/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SachaIZADI/AI-generated-blog-posts/HEAD/ai_articles/app.py -------------------------------------------------------------------------------- /ai_articles/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SachaIZADI/AI-generated-blog-posts/HEAD/ai_articles/data.py -------------------------------------------------------------------------------- /ai_articles/data/posts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SachaIZADI/AI-generated-blog-posts/HEAD/ai_articles/data/posts.csv -------------------------------------------------------------------------------- /ai_articles/data/posts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SachaIZADI/AI-generated-blog-posts/HEAD/ai_articles/data/posts.txt -------------------------------------------------------------------------------- /ai_articles/medium-copycat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SachaIZADI/AI-generated-blog-posts/HEAD/ai_articles/medium-copycat/index.html -------------------------------------------------------------------------------- /ai_articles/medium-copycat/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SachaIZADI/AI-generated-blog-posts/HEAD/ai_articles/medium-copycat/style.css -------------------------------------------------------------------------------- /ai_articles/run_language_modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SachaIZADI/AI-generated-blog-posts/HEAD/ai_articles/run_language_modeling.py -------------------------------------------------------------------------------- /ai_articles/scripts/download_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SachaIZADI/AI-generated-blog-posts/HEAD/ai_articles/scripts/download_data.py -------------------------------------------------------------------------------- /media/streamlit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SachaIZADI/AI-generated-blog-posts/HEAD/media/streamlit.gif -------------------------------------------------------------------------------- /media/streamlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SachaIZADI/AI-generated-blog-posts/HEAD/media/streamlit.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SachaIZADI/AI-generated-blog-posts/HEAD/requirements.txt --------------------------------------------------------------------------------