forked from GitHub/gf-core
cf exper on res
This commit is contained in:
26
lib/resource/exper/Adj.cf
Normal file
26
lib/resource/exper/Adj.cf
Normal file
@@ -0,0 +1,26 @@
|
||||
PositA. AP ::= A ;
|
||||
ComplA2. AP_post ::= A2 Prep NP ;
|
||||
ComparA. AP_post ::= "more" A "than" NP ;
|
||||
|
||||
-- superlatives à la CLE
|
||||
|
||||
Num ::= "most" A ;
|
||||
Num_Pl ::= "most" A ;
|
||||
|
||||
ComplAV. AP_post ::= AV Prep VP ;
|
||||
UseA2V. AV ::= A2V Prep NP ;
|
||||
|
||||
PredAS. Cl ::= "it" "be" AS "that" S ;
|
||||
|
||||
ComplAQ. AP ::= AQ "of" QS ;
|
||||
|
||||
---- TODO: comparison of AV etc
|
||||
|
||||
-- lexicon
|
||||
|
||||
A ::= "intelligent" ;
|
||||
A2 ::= "devoted" ;
|
||||
AV ::= "tedious" ;
|
||||
AV ::= "difficult" ;
|
||||
AS ::= "marvellous" ;
|
||||
AQ ::= "independent" ;
|
||||
22
lib/resource/exper/Adverb.cf
Normal file
22
lib/resource/exper/Adverb.cf
Normal file
@@ -0,0 +1,22 @@
|
||||
-- adverbs
|
||||
|
||||
AdjAdv. Adv ::= A "+ly" ;
|
||||
AdvPP. Adv ::= PP ;
|
||||
PrepNP. Adv ::= Prep NP ;
|
||||
|
||||
-- NO AdvCN
|
||||
AdvVP. VP ::= VP Adv ;
|
||||
AdvNP. NP ::= NP Adv ;
|
||||
AdvAP. AP ::= AdA AP ;
|
||||
AdvAdv. Adv ::= AdA Adv ;
|
||||
|
||||
-- different from AdvVP!
|
||||
|
||||
VP ::= AdV VP ;
|
||||
|
||||
-- lexicon
|
||||
|
||||
Prep ::= "of" | "to" ;
|
||||
Adv ::= "here" ;
|
||||
AdA ::= "very" ;
|
||||
AdV ::= "always" ;
|
||||
@@ -1,25 +0,0 @@
|
||||
NP ::= Det CN ;
|
||||
Det ::= Predets Quants ;
|
||||
|
||||
Predets ::= ;
|
||||
|
||||
Predets ::= "only" | "just" ;
|
||||
Quants ::= "this" | "my" | "one" | "the" | "a" | "every" | "some" ;
|
||||
|
||||
NP ::= Detp CNp ;
|
||||
Detp ::= Predet Quant Num ;
|
||||
|
||||
Predet ::= ;
|
||||
Quant ::= ;
|
||||
Num ::= ;
|
||||
|
||||
Predet ::= "all" | "only" | "just" ;
|
||||
|
||||
Quant ::= "these" | "my" | "many" | "some" ;
|
||||
|
||||
Num ::= "four" ;
|
||||
|
||||
CNp ::= "sons" ;
|
||||
CN ::= "son" ;
|
||||
|
||||
--
|
||||
9
lib/resource/exper/Lex.cf
Normal file
9
lib/resource/exper/Lex.cf
Normal file
@@ -0,0 +1,9 @@
|
||||
-- a bigger lexicon
|
||||
|
||||
Pron ::= "I" | "me" | "he" | "she" ;
|
||||
Pron ::= "us" | "we" ;
|
||||
Poss ::= "your" | "his" | "her" | "our" ;
|
||||
Prep ::= "about" | "for" | "from" | "in" ;
|
||||
|
||||
N ::= "car" | "house" | "flight" | "aircraft" ;
|
||||
N_Pl ::= "cars" | "houses" | "flights" | "aircraft" ;
|
||||
78
lib/resource/exper/Noun.cf
Normal file
78
lib/resource/exper/Noun.cf
Normal file
@@ -0,0 +1,78 @@
|
||||
NP ::= Det CN ;
|
||||
NP ::= PN ;
|
||||
NP ::= Pron ;
|
||||
Det ::= Predet Quant Num ;
|
||||
Det ::= Predet Quant ;
|
||||
|
||||
Predet ::= ;
|
||||
|
||||
Predet ::= "only" | "just" ;
|
||||
Quant ::= "this" | "the" | "a" | "every" | "some" ;
|
||||
|
||||
Num ::= "one" ;
|
||||
|
||||
Quant ::= Poss ;
|
||||
|
||||
Quant ::= ; -- for NMass
|
||||
|
||||
---NP ::= DetMass NMass ;
|
||||
---DetMass ::= Predet Quant ;
|
||||
---DetMass ::= Predet ;
|
||||
---NMass ::= "wine" ;
|
||||
Pron ::= "you" ;
|
||||
|
||||
NP ::= Det_Pl CN_Pl ;
|
||||
NP ::= Predet_Pl Quant_Pl Num_Pl ; -- nonempty det
|
||||
|
||||
Det_Pl ::= Predet_Pl Quant_Pl Num_Pl ;
|
||||
Det_Pl ::= Predet_Pl Quant_Pl ;
|
||||
|
||||
Predet_Pl ::= ;
|
||||
Quant_Pl ::= ;
|
||||
|
||||
Predet_Pl ::= "all" | "only" | "just" ;
|
||||
|
||||
Quant_Pl ::= "these" | "many" | "some" ;
|
||||
|
||||
Quant_Pl ::= Poss ;
|
||||
|
||||
Poss ::= NP "'s" | "my" ;
|
||||
|
||||
Num_Pl ::= Int ;
|
||||
Num_Pl ::= "four" ;
|
||||
|
||||
CN_Pl ::= N_Pl ;
|
||||
CN ::= N ;
|
||||
|
||||
-- prepositions cannot be expressed generally here
|
||||
-- NB relational nouns explain why complements are closer than adjuncts
|
||||
|
||||
CN ::= N2 "for" NP ;
|
||||
N2 ::= N3 "of" NP ;
|
||||
|
||||
-- elliptical constructions
|
||||
|
||||
N2 ::= N3 ;
|
||||
CN ::= N2 ;
|
||||
|
||||
-- these need other modules to produce anything
|
||||
|
||||
CN ::= AP CN ;
|
||||
CN ::= CN AP_post ;
|
||||
CN ::= CN "that" S ;
|
||||
|
||||
CN_Pl ::= AP CN_Pl ;
|
||||
CN_Pl ::= CN_Pl AP_post ;
|
||||
|
||||
-- some open lexicon
|
||||
|
||||
N_Pl ::= "sons" ;
|
||||
N ::= "son" ;
|
||||
|
||||
N2 ::= "plan" ;
|
||||
N3 ::= "value" ;
|
||||
|
||||
N ::= "wine" ;
|
||||
|
||||
PN ::= "John" ;
|
||||
|
||||
8
lib/resource/exper/Phrase.cf
Normal file
8
lib/resource/exper/Phrase.cf
Normal file
@@ -0,0 +1,8 @@
|
||||
Phr ::= PConj Imp ;
|
||||
Phr ::= PConj S ;
|
||||
Phr ::= PConj QS ;
|
||||
|
||||
Phr ::= PConj "please" Imp | PConj QS "please" ;
|
||||
Phr ::= PConj NP | PConj NP "please" ;
|
||||
|
||||
PConj ::= | "and" | "but" | "therefore" ;
|
||||
2
lib/resource/exper/Rules.cf
Normal file
2
lib/resource/exper/Rules.cf
Normal file
@@ -0,0 +1,2 @@
|
||||
-- include Det.cf Adj.cf Verb.cf Sent.cf Adverb.cf Phrase.cf Lex.cf
|
||||
|
||||
49
lib/resource/exper/Sent.cf
Normal file
49
lib/resource/exper/Sent.cf
Normal file
@@ -0,0 +1,49 @@
|
||||
--- just one tense considered; no agreement forced
|
||||
|
||||
S ::= NP Do VP ;
|
||||
S ::= Adv "," S ;
|
||||
|
||||
-- slash category instead of gaps
|
||||
|
||||
Slash ::= NP V2 ;
|
||||
Slash ::= NP VV "to" V2 ;
|
||||
Slash ::= NP Cop A2 Prep ;
|
||||
Slash ::= S Prep ;
|
||||
Slash ::= Slash Adv ; -- who does my son love here
|
||||
|
||||
-- questions
|
||||
|
||||
QS ::= Do NP VP ;
|
||||
|
||||
-- this will be eliminated via richer lintypes
|
||||
QS ::= Cop NP Comp ;
|
||||
|
||||
IntVP. QS ::= IP VP ;
|
||||
QS ::= IP Do VP ;
|
||||
IntSlash. QS ::= IP Do Slash ;
|
||||
|
||||
-- general: QuestAdv : IAdv -> Cl -> QCl ;
|
||||
QS ::= IAdv Do NP VP ;
|
||||
QS ::= IAdv Cop NP ;
|
||||
|
||||
IAdv ::= "why" | "where" | "when" ;
|
||||
|
||||
-- relatives
|
||||
|
||||
RelVP. RS ::= RP VP ;
|
||||
RS ::= RP "doesn't" VP ;
|
||||
RelSlash. RS ::= RP Slash ;
|
||||
|
||||
-- CLE syntax of relatives
|
||||
NP ::= NP RS ;
|
||||
|
||||
IP ::= "who" ;
|
||||
FunIP. IP ::= "the" N2 "of" IP ;
|
||||
|
||||
RP ::= "which" ;
|
||||
FunRP. RP ::= "the" N2 "of" RP ; -- ?
|
||||
|
||||
-- imperative
|
||||
|
||||
PosImpVP. Imp ::= VP ;
|
||||
NegImpVP. Imp ::= "don't" VP ;
|
||||
28
lib/resource/exper/Verb.cf
Normal file
28
lib/resource/exper/Verb.cf
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
PredV0. S ::= "it" V0 ;
|
||||
|
||||
UseV. VP ::= V ;
|
||||
ComplV2. VP ::= V2 NP ;
|
||||
ComplV3. VP ::= V3 NP NP ;
|
||||
ComplVV. VP ::= VV "to" VP ;
|
||||
|
||||
VP ::= Cop Comp ;
|
||||
|
||||
Comp ::= AP | NP | Adv ;
|
||||
|
||||
-- partial saturation
|
||||
|
||||
|
||||
|
||||
-- in the lexicon, we must give up verb agreement
|
||||
|
||||
V0 ::= "rain" | "rains" ;
|
||||
V ::= "sleeps" | "sleep" ;
|
||||
V2 ::= "loves" | "love" ;
|
||||
V3 ::= "sends" | "send" ;
|
||||
VV ::= "wants" | "want" ;
|
||||
|
||||
-- these may be eliminated
|
||||
|
||||
Cop ::= "is" | "are" | "isn't" | "aren't" | "be" ;
|
||||
Do ::= "do" | "does" | "doesn't" | "don't" ;
|
||||
Reference in New Issue
Block a user