Hi, following the previous post
using this pattern rule…
([(me llamo) (soy)] ~propername)
the system is matching when I type…
soy Jorge
or
soy Jorge de Brazil
but not when I type…
soy Jorge, de Brazil
why is that?, am I doing something wrong?
how does CS manage the commas internally?
I deleted the english DICT completely, and place an spanish DICT instead, this is how I put the def for jorge
Jorge ( NOUN_HUMAN NOUN_FIRSTNAME NOUN_HE NOUN NOUN_PROPER_SINGULAR COMMON1 )
eb: > :prepare soy Jorge, de Cordoba
TokenControl: DO_ESSENTIALS DO_NUMBER_MERGE DO_PROPERNAME_MERGE DO_DATE_MERGE DO
_SPELLCHECK DO_INTERJECTION_SPLITTING DO_PARSE
Original User Input: soy Jorge, de Cordoba
Tokenized into: soy Jorge , de Cordoba
Spelling changed into: soy jorge , de Cordoba
Actual used input: soy jorge(Jorge) , de Cordoba
Xref: 1:soy 2:jorge >3 3:, 4:de >1 o5 5:Cordoba >4
1:soy 2:jorge 3:, 4:de p1 5:Cordoba p1
badparse Tagged POS 5 words: soy (MAINVERB Verb_present) jorge (Adjective_noun)
,/unknown-word (Noun_singular) de ()
MainSentence: Verb: soy [p1] PRESENT
Phrase 1 : de Cordoba
Concepts:
1: soy (raw): +~verb_present +~verb_bits +~verb +~verb_conjugate1 +~mainverb +s
oy +T~p_u-intro0
. +~health_food_shop +~store_type //
1: (canonical): //
2: jorge (raw): +~adjective +~adjective_noun +jorge //
2: jorge (canonical): //
3: , (raw): +~noun +~noun_singular +~singular +~normal_noun_bits +~noun_bits +~
unknownword +,
. +~system_joiner //
3: unknown-word (canonical): +unknown-word //
4: de (raw): +~lowercase_title +~preposition +~KINDERGARTEN +~howunit +~phrase(
4-5) +de +T~p_u-intro0 //
4: de (canonical): // +DE +~state_abbreviations
5: Cordoba (raw): +~noun +~noun_proper_singular +~singular +~normal_noun_bits +
~noun_bits +~object2
. +~sentenceend // +Cordoba +~selloc +T~p_u-intro0
5: Cordoba (canonical): // +~propername
Sequences:
After parse TokenFlags: SPELLCHECK PRESENT USERINPUT FAULTY_PARSE NOT_SENTENCE
EBSCB_A_IRC:
eb: >
thanks advanced.