store copular verb + verb lemma set
All checks were successful
studiorailgun/trpg/pipeline/head This commit looks good
All checks were successful
studiorailgun/trpg/pipeline/head This commit looks good
This commit is contained in:
parent
693e4c0d93
commit
9c7e32094d
102
data/dictionary/verb_lemmas.txt
Normal file
102
data/dictionary/verb_lemmas.txt
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
A list of verb lemmas to potentially be used to construct dictionaries later
|
||||||
|
|
||||||
|
be
|
||||||
|
have
|
||||||
|
do
|
||||||
|
say
|
||||||
|
go
|
||||||
|
get
|
||||||
|
make
|
||||||
|
know
|
||||||
|
think
|
||||||
|
take
|
||||||
|
see
|
||||||
|
come
|
||||||
|
want
|
||||||
|
look
|
||||||
|
use
|
||||||
|
find
|
||||||
|
give
|
||||||
|
tell
|
||||||
|
work
|
||||||
|
call
|
||||||
|
try
|
||||||
|
ask
|
||||||
|
need
|
||||||
|
feel
|
||||||
|
become
|
||||||
|
leave
|
||||||
|
put
|
||||||
|
mean
|
||||||
|
keep
|
||||||
|
let
|
||||||
|
begin
|
||||||
|
seem
|
||||||
|
help
|
||||||
|
talk
|
||||||
|
turn
|
||||||
|
start
|
||||||
|
show
|
||||||
|
hear
|
||||||
|
play
|
||||||
|
run
|
||||||
|
move
|
||||||
|
like
|
||||||
|
live
|
||||||
|
believe
|
||||||
|
hold
|
||||||
|
bring
|
||||||
|
happen
|
||||||
|
write
|
||||||
|
provide
|
||||||
|
sit
|
||||||
|
stand
|
||||||
|
lose
|
||||||
|
pay
|
||||||
|
meet
|
||||||
|
include
|
||||||
|
continue
|
||||||
|
set
|
||||||
|
learn
|
||||||
|
change
|
||||||
|
lead
|
||||||
|
understand
|
||||||
|
watch
|
||||||
|
follow
|
||||||
|
stop
|
||||||
|
create
|
||||||
|
speak
|
||||||
|
read
|
||||||
|
allow
|
||||||
|
add
|
||||||
|
spend
|
||||||
|
grow
|
||||||
|
open
|
||||||
|
walk
|
||||||
|
win
|
||||||
|
offer
|
||||||
|
remember
|
||||||
|
love
|
||||||
|
consider
|
||||||
|
appear
|
||||||
|
buy
|
||||||
|
wait
|
||||||
|
serve
|
||||||
|
die
|
||||||
|
send
|
||||||
|
expect
|
||||||
|
build
|
||||||
|
stay
|
||||||
|
fall
|
||||||
|
cut
|
||||||
|
reach
|
||||||
|
kill
|
||||||
|
remain
|
||||||
|
suggest
|
||||||
|
raise
|
||||||
|
pass
|
||||||
|
sell
|
||||||
|
require
|
||||||
|
report
|
||||||
|
decide
|
||||||
|
pull
|
||||||
@ -120,6 +120,7 @@ public class Clause {
|
|||||||
//predicates
|
//predicates
|
||||||
case "copula": {
|
case "copula": {
|
||||||
//this means the root is a noun, but this related word is turning it into a copular predicate
|
//this means the root is a noun, but this related word is turning it into a copular predicate
|
||||||
|
pred.setCopular(child);
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
//a prepositional adjunct (oblique)
|
//a prepositional adjunct (oblique)
|
||||||
|
|||||||
@ -81,6 +81,11 @@ public class Predicate {
|
|||||||
* The nonverbal predicate type
|
* The nonverbal predicate type
|
||||||
*/
|
*/
|
||||||
NonVerbalPredicateType nonVerbalType;
|
NonVerbalPredicateType nonVerbalType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The copular verb for this predicate
|
||||||
|
*/
|
||||||
|
IndexedWord copularVerb;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
@ -119,7 +124,7 @@ public class Predicate {
|
|||||||
* @param copularWord The copular word
|
* @param copularWord The copular word
|
||||||
*/
|
*/
|
||||||
public void setCopular(IndexedWord copularWord){
|
public void setCopular(IndexedWord copularWord){
|
||||||
|
this.copularVerb = copularWord;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user