Complete the handin Questions for lab.
There are many examples of randomly-generated text, graphics, art, and so on. The ones referenced here all use context free grammars like those you'll be using in this assignment. The AD Generator combines slogans with Flickr images to create random ads built on real slogans. The famous SCIgen project generates random computer science papers including those that were actually accepted for publication, albeit in shady conference venues. The site has videos and a complete description of the history of SCIgen.
Context Free Art includes information on generating different images using grammars and computerized drawing. Grammars known as L-systems have also successfully modeled plant formation.
For example, here are some Duke Compsci excuses generated by this grammar.
I can't believe I haven't started working on this week's APT assignment. The problems were unbelievably hard and I couldn't find my computer .I finished working on this week's APT assignment. The problems were like trivial and Eclipse crashed .
I gave up working on this week's APT assignment. The problems were really , really , so impossible and I got unbelievably sick .
I gave up working on this week's APT assignment. The problems were so , like easy and I had a midterm .
I finished working on this week's APT assignment. The problems were like trivial .
First answer the questions on the handin pages, then create and upload a grammar. We'll vote on grammars next week and you'll modify the RSG program as part of the next assignment. You might want to read about grammars below first to understand the terminology used.
Then create a grammar and upload it to the course
website. Verify that your grammar is there by loading it
via the URLreader.py
module.
The format of the grammar used in this assignment is described briefly here, but you can reason by example from the apt-issues.g file or by browsing submitted grammars what the grammar looks like.
A grammar processed by your program consists of a collection of definitions and rules for each definition. Each definition must is enclosed by curly-braces. The definition consists of the non-terminal being defined followed by the rules for that definition. Random text is always generated beginning with the non-terminal <start> as can be seen in the examples shown above generated by this grammar. In the grammar we treat each non-terminal between curly-braces as a definition (that's the word used). Each expansion for the non-terminal is separated from others by a semi-colon. These expansions are called productions.
By examining the randomly generated examples you can see how sometimes a string of adjectives is generated, e.g., like, really, really, so, unbelievably. In theory the length of this sequence of adjectives, generated by repeatedly choosing the last of the rules for the non-terminal <adjective>, could be arbitrarily long, but in practice choosing this rule happens with probability 0.2 (1/5) so choosing it repeatedly isn't too likely.
Some non-terminals, like <difficult> and <status> don't result in more rules/definitions being chosen. But the others do generate more choices and texts since the rules associated with the definitions also have non-terminals in them.