From eef5de613c75661e5d94baa086f6f2ddc26c7ed0 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 24 Mar 2016 23:16:07 -0400 Subject: Added verb frames In addition: - Added prepositions. - Rewrote a lot of the query interface. It now, for a lot of relationships, supports nested AND, OR, and NOT logic. - Rewrote the token class. It is now a union-like class instead of being polymorphic, which means smart pointers are no longer necessary. - Querying with regards to word derivation has been temporarily removed. - Sentinel values are now supported for all word types. - The VerbNet data retrieved from http://verbs.colorado.edu/~mpalmer/projects/verbnet/downloads.html was found to not be perfectly satisfactory in some regards, especially regarding adjective phrases. A patch file is now included in the repository describing the changes made to the VerbNet v3.2 download for the canonical verbly datafile. --- generator/prepositions.txt | 49 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 generator/prepositions.txt (limited to 'generator/prepositions.txt') diff --git a/generator/prepositions.txt b/generator/prepositions.txt new file mode 100644 index 0000000..283e5c4 --- /dev/null +++ b/generator/prepositions.txt @@ -0,0 +1,49 @@ +from: src, path, spatial, loc +out: src, path, spatial +out of: src, path, spatial, loc +off: src, path, spatial, loc +off of: src, path, spatial +into: dest_conf, dest, path, spatial +onto: dest_conf, dest, path, spatial +for: dest_dir, dest, path, spatial +at: dest_dir, dest, path, spatial, loc +to: dest_dir, dest, path, spatial +towards: dest_dir, dest, path, spatial +along: dir, path, spatial, loc +across: dir, path, spatial +around: dir, path, spatial, loc +down: dir, path, spatial +over: dir, path, spatial, loc +past: dir, path, spatial +round: dir, path, spatial, loc +through: dir, path, spatial +towards: dir, path, spatial +up: dir, path, spatial +about: loc, spatial +above: loc, spatial +against: loc, spatial +alongside: loc, spatial +amid: loc, spatial +among: loc, spatial +amongst: loc, spatial +astride: loc, spatial +athwart: loc, spatial +before: loc, spatial +behind: loc, spatial +beside: loc, spatial +between: loc, spatial +beyond: loc, spatial +by: loc, spatial +in: loc, spatial +in front of: loc, spatial +inside: loc, spatial +near: loc, spatial +next to: loc, spatial +on: loc, spatial +opposite: loc, spatial +outside: loc, spatial +throughout: loc, spatial +under: loc, spatial +underneath: loc, spatial +upon: loc, spatial +within: loc, spatial \ No newline at end of file -- cgit 1.4.1