From 71f68229040a6c1c664ed2982ca3d9cd4883eb68 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Wed, 12 Jul 2017 20:08:46 -0400 Subject: [PATCH] Fix link typo, change image for post --- _posts/2017-07-11-generating-random-poems-with-python.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_posts/2017-07-11-generating-random-poems-with-python.md b/_posts/2017-07-11-generating-random-poems-with-python.md index 90638a8..e8da41d 100644 --- a/_posts/2017-07-11-generating-random-poems-with-python.md +++ b/_posts/2017-07-11-generating-random-poems-with-python.md @@ -1,6 +1,7 @@ --- title: Generating Random Poems with Python layout: post +image: /img/blog/buzzfeed.jpg --- In this post, I will demonstrate how to generate random text using a few lines @@ -323,7 +324,7 @@ does: 1 To see this in action, try out a haiku generator I created that uses Buzzfeed article titles as a corpus. It does not incorporate rhyming, it just counts the -syllables to make sure it's [5-7-5]((https://en.wikipedia.org/wiki/Haiku). You can view the full code +syllables to make sure it's [5-7-5](https://en.wikipedia.org/wiki/Haiku). You can view the full code [here](https://github.com/thallada/nlp/blob/master/generate_poem.py). ![Buzzfeed Haiku Generator](/img/blog/buzzfeed.jpg)