vote up 32 vote down star
11

Computer Haiku

How would you write a program

To make them for you

flag

Thats +1 just for the haiku. – Mostlyharmless Feb 2 at 19:11
Hire an infinite number of monkeys. In addition to the complete works of Shakespeare, you'll get an infinite number of Haikus. – Jon B Feb 2 at 19:39
@Jon B: But that would take infinitely long. – Bill the Lizard Feb 2 at 19:46
+1 for the question, and the comments thus far. – Michael Haren Feb 2 at 20:27
@Bill, If you had an infinite amount of time, you would only need to hire one very healthy monkey. If you hire an infinite number of monkeys, your literature will be produced at a rate limited only by the typing speed of a particularly brillant monkey. – joeforker Feb 17 at 14:08
show 2 more comments

19 Answers

vote up 5 vote down check

Do not attempt it

Poetry does not mix well

With metal and bits

More seriously, good haiku (and even bad haiku) is a lot more about condensing meaning and imagery than counting syllables. It is generally also based on themes gathered from nature. Random word generation and syllable counting will get you measured gibberish, but not poetry...

link|flag
I don't know. The search for meaning in randomness seems deeply human. What is a poem that had no meaning put into it, but only the meaning taken from it by the reader? Is it a model of secular humanism? – joeforker Feb 2 at 22:02
vote up 24 vote down

Measure syllables

Understand semantic flow

Your goal can be met

link|flag
vote up 8 vote down
  • count the syllables
  • randomly generate words
  • arrange sensibly
link|flag
before you -1 me, count the syllables... ;) – Jason S Feb 2 at 21:07
vote up 7 vote down

First, you'll want to look into Markov chains, and second, there's a book about computer-generated poetry called Virtual Muse.

link|flag
vote up 6 vote down

Not all haikus have the same number of syllables, but it's a place to start.

In terms of actually picking the words, I think that parts of speech would not be the place where I would start. Instead, I would look at Markov chains, and train your vocabulary on existing haikus.

link|flag
markov chain on pairs or more of words from haikus and other poetry i think would be pretty damn good! – nlucaroni Feb 2 at 19:20
Actually haikus have the same number of syllables, that's their definition: en.wikipedia.org/wiki/Haiku – Mnementh Feb 2 at 19:25
Hmm, read this too: en.wikipedia.org/wiki/… "Use of three (or fewer) lines of 17 or fewer syllables" – Jonik Feb 2 at 19:30
bah! Contemporary-English haiku? what crap. – Kevin Feb 2 at 20:35
vote up 2 vote down

implement a genetic algorithm to generate haikus drawn from a dictionary annotated with syllable counts, then pay people to read and rate them as the fitness function [mechanical turk would help]. Over time your program should evolve some good ones.

EDIT:

a GA you need
evolves at CPU speed
if fitness you heed

link|flag
I'd love to see an implementation of this one. Genetic algorithms intrigue me greatly... – Erik Feb 2 at 21:57
vote up 1 vote down

I would look up syntactical programming and linguistic and try to find libraries for grammatical structure. From there it should be a simple step to add the word count and syllable count constraints.

link|flag
vote up 1 vote down

"To convey one's mood in seventeen Syllables is very diffic . . ." (The great John Cooper Clarke Check out Beasley Street, one of my favourites)

How much more diffic for a computer? Logic knows no moods :)

link|flag
vote up 1 vote down

Some people here suggested using a dictionary and generating word sequences using a Markov Chain. That seems like a theoretically viable solution, especially if you use a high-order Markov Chain (not bi- or trigrams).

But I think in practice it would work better if you could collect a database of existing haikus and selectively change single words in them (e.g., change a given word to another, semantically related word). The existing haikus give you some kind of structure and cohesion, and you just need to (ex-)change little parts in them in order to create a new haiku (a variation on the old one).

Of course they won't be completely new haikus with this method, but at least they will be somewhat enjoyable for the readers.

link|flag
vote up 1 vote down

Write your program to generate Haiku's in Japanese. It will be far easier to measure your syllable count, pluse you are staying faithful to the original language of the poetry. If you have flexibility with the project, why not make the original Japanese - then show the English word by word literal translation by its side. It will look mysterious to say the least.

Anyways, just a different take on the problem.

link|flag
vote up 0 vote down

I'd start with some kind of dictionary file that contains a syllable count of each word in it. Then pick words from that add up to the required syllables/line

As to making it poetry, and not just random words, I have no idea.

link|flag
Poetry vs. random words, who the difference can tell? ;-) – joeforker Feb 2 at 19:29
Text-to-speech programs come with pronouncing dictionaries. – joeforker Feb 2 at 20:35
vote up 0 vote down

You could, in addition to using Ian's idea of syllable counts, also categorize the words by part of speech and generate phrases.

link|flag
vote up 0 vote down

From the semantic sude of the story use sampling and fourier transformation. Pick significant parts of some detailed description reduced in single words and leave to a reader to fill in gaps with her own imagination

link|flag
Please expand on how you can deconstruct a story as a sum of sine or cosine waves of various frequencies. – joeforker Feb 2 at 19:31
well, what is the idea of sampling? sampling the signal with a frequency which is at least double of the highest frequency in the range of interest. if you have descreet information extracted like this you can reconstruct the analog input without any loss (in the interested range) – Boris Pavlović Feb 2 at 23:05
analogous to this pick up significant verbs, nouns and adjectives which are corner stones in some description and leave everything else. compose these words in meaningfull arrays and you'll get haiku – Boris Pavlović Feb 2 at 23:07
vote up 0 vote down

To make it readable, separate the dictionary into Nouns, Verbs, Adjectives, with syllable count.

Come up with some templates of the form:

[Noun] [Verb]"s"

[Verb] a(n) [Adjective] [Noun]

[adjective] [noun]

and trim your dictionaries to the beautiful words.

link|flag
vote up 0 vote down

Parse existing haikus in a relational order, like word xx used after yy n times. So when creating, possibility of xx coming after yy will be (n / sum of count of all words used after yy). This way it will be selectively randomized and can still be a valid haiku.

link|flag
That is a decent description of the idea behind Markov chains. If word y comes after word x 75% of the time in the source, then y will be chosen 75% of the time in the output. – joeforker Feb 3 at 14:20
really? i just made it up. – Orkun Balkancı Feb 3 at 14:39
vote up 0 vote down

I'd do my homework!

link|flag
I assure you I am out of school. – joeforker Feb 3 at 14:41
vote up 0 vote down

On Haiku Village, we have the technology to easily do this in a variety of ways. One idea is to simply read the global twitter feed, and detect unintentional haikus. Since the back-end also has a dictionary, it would be possible to produce questionable haikus, but I think the quality would be lacking.

I think if we had a star rating system, then I suppose machine learning could be used to decide what is 'good'.

link|flag
vote up 0 vote down

Your program must grok
Metaphores and imagery
And be creative.

link|flag
vote up 0 vote down

Haikus are easy, that I'll note
Solutions well documented, and functions rote
They're overdone and cheesy
Coding far too easy
Code me a limerick, then I'll vote

//I actually like haikus

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.