summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Renamed some class members that shared names with classesKelly Rauchenberger2016-03-172-5/+6
|
* Added word derivational relationships (kind of eh at the moment) and moved ↵Kelly Rauchenberger2016-03-1623-0/+2348
| | | | verbly into its own directory
* Added more inflections, word relationships, and pronunciationsKelly Rauchenberger2016-03-1616-346/+2740
| | | | Nouns, adjectives, and adverbs now have inflected forms. A large number of WordNet word relationships (all noun-noun relationships, plus synonymy and antonymy for all word types except verbs) have been added. Additionally, CMUDICT is now being used to store word pronunciations for rhyming purposes. Verbly is now also a compiled library rather than being header-only due to the complexity of the query interface.
* Started implementing verbly data generatorKelly Rauchenberger2016-03-105-18/+106
| | | | | | Currently, the generator: - Uses AGID to create entries for verb words and their inflections - Uses WordNet to create entries for adjective, adverb, and noun senses
* Started verbly rewriteKelly Rauchenberger2016-03-096-0/+670
verbly is intended to be a general use natural language generation library. Here, I'm using it to simply generate random verbs or adjectives. A schema for the sqlite database is provided, and for testing I manually added data. A generator program is being written that will generate a database from WordNet, VerbNet, PropBank, and AGID data.