about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* hashtags are now randomizedKelly Rauchenberger2016-01-252-37/+102
|
* switched to cmakeKelly Rauchenberger2016-01-247-382/+21
|
* Merge branch 'master' of http://github.com/hatkirby/rawr-ebooksKelly Rauchenberger2016-01-051-1/+1
|\
| * Merge branch 'master' of https://github.com/hatkirby/rawr-ebooksKelly Rauchenberger2016-01-045-502/+439
| |\ | | | | | | | | | | | | Conflicts: malaprop.cpp
| * \ Merge branch 'master' of https://github.com/hatkirby/rawr-ebooksKelly Rauchenberger2015-12-303-45/+84
| |\ \
| * | | ????Kelly Rauchenberger2015-11-261-0/+6
| | | |
* | | | Did you know you can put comments in front of ascii art ↵Kelly Rauchenberger2016-01-051-0/+34
| |_|/ |/| | | | | | | | (https://twitter.com/rawr_ebooks/status/684376473369706498)
* | | Rewrote quite a bit of kgramstatsKelly Rauchenberger2016-01-045-501/+444
| |/ |/| | | | | | | | | The algorithm still treats most tokens literally, but now groups together tokens that terminate a clause somehow (so, contain .?!,), without distinguishing between the different terminating characters. For each word that can terminate a sentence, the algorithm creates a histogram of the terminating characters and number of occurrences of those characters for that word (number of occurrences is to allow things like um???? and um,,,,, to still be folded down into um.). Then, when the terminating version of that token is invoked, a random terminating string is added to that token based on the histogram for that word (again, to allow things like the desu-ly use of multiple commas to end clauses). The algorithm now also has a slightly advanced kgram structure; a special "sentence wildcard" kgram value is set aside from normal strings of tokens that can match any terminating token. This kgram value is never printed (it is only ever present in the query kgrams and cannot actually be present in the histograms (it is of a different datatype)) and is used at the beginning of sentence generation to make sure that the first couple of words generated actually form the beginning of a sentence instead of picking up somewhere in the middle of a sentence. It is also used to reset sentence generation in the rare occasion that the end of the corpus is reached.
* | guess what! the algorithmKelly Rauchenberger2015-12-303-45/+84
|/ | | | | | | this time it's a literal algorithm again not canonizing away punctuation newlines are actually considered new sentences now we look for the end of a sentence and then start after that
* You guessed it,,, twerked the algoKelly Rauchenberger2015-11-231-44/+41
|
* std::set seems to have some problem with inserting an empty string. Warrants ↵Kelly Rauchenberger2015-11-231-2/+7
| | | | further investigation.
* Fixed std namespace references in ebooks.cppKelly Rauchenberger2015-11-231-10/+10
|
* Added malapropismsKelly Rauchenberger2015-11-229-117/+293
|
* I may have made things better. I may have made things worse.Kelly Rauchenberger2015-11-223-10/+22
|
* Added some newline recognitionKelly Rauchenberger2015-07-241-31/+55
|
* Took into account question marks and exclamation marksKelly Rauchenberger2015-07-191-2/+2
|
* Stopped using C++11 because yamlcpp didn't like itKelly Rauchenberger2015-07-192-5/+7
|
* Kerjiggered the algorithmsKelly Rauchenberger2015-07-193-22/+173
|
* Modified kgram shortening rateKelly Rauchenberger2014-04-221-1/+1
|
* Fixed typo with respect to reading delay time from config.ymlFeffernoose2013-10-081-1/+1
|
* Added user-configurble delay between tweets in rawr-ebooksFeffernoose2013-10-083-3/+8
| | | | Also changed default delay from 15 minutes to 1 hour
* Fixed a few minor compile errors in freevarsFeffernoose2013-10-072-1/+2
|
* Implemented freevarsFeffernoose2013-10-075-4/+82
| | | | Arbitrary variable tokens can now be defined (though at this point only in the code itself) as a pair of a variable name and a filename pointing to a plain text file containing a newline-delimited list of elements. When a token of the form $name$ (where name is the name of a variable) is encountered, the output will include a random element from the appropriate list. The variables $name$ and $noun$ are hard-coded at this point, but the program will not crash if names.txt and nouns.txt do not exist and will instead just silently ignore the variables.
* Removed yamlcpp dependency from rawr-genFeffernoose2013-10-063-15/+28
| | | | rawr-gen now takes the input corpus as a command-line argument, so as to increase the ease-of-use. It also now shows a usage message if provided with a non-existent file or no argument.
* Merge branch 'master' of http://github.com/hatkirby/rawr-ebooksFeffernoose2013-10-061-2/+8
|\
| * Merge branch 'master' of https://github.com/hatkirby/rawr-ebooksFeffernoose2013-10-061-11/+11
| |\
| * | Stripped empty tokens from corpusFeffernoose2013-10-061-2/+8
| | |
* | | Split rawr-ebooks and rawr-genFeffernoose2013-10-064-7/+94
| |/ |/| | | | | Also wrote README
* | Program no longer recalculates kgramstats repeatedly within each runFeffernoose2013-10-051-11/+11
|/
* Rewrote weighted random number generatorFeffernoose2013-10-052-34/+39
| | | | | | The previous method of picking which token was the next one was flawed in some mysterious way that ended up picking various words that occurred only once in the input corpus as the first word of the generated output (most notably, "hysterically," "Anarchy," "Yorkshire," and "impunity.").
* Changed incidence of random kgram-trimmingFeffernoose2013-10-041-4/+10
| | | | Also added better terminal output
* Weighed token casing and presence of periodsFeffernoose2013-10-012-28/+76
| | | | | | | | Tokens which differ only by casing or the presence of an ending period are now considered the same token. When tokens are generated, they are cased based on the prevalence of Upper/Title/Lower casing of the token in the input corpus, and similarly, a period is added to the end of the word based on how often the same token was ended with a period in the input corpus.
* Wrote programFeffernoose2013-10-016-1/+336
|
* Started automake stuffFeffernoose2013-09-304-0/+38
|
* Initial commitKelly Rauchenberger2013-09-303-0/+356